summaryrefslogtreecommitdiff
path: root/gdb/go32-nat.c
diff options
context:
space:
mode:
authorPierre Muller <muller@ics.u-strasbg.fr>2010-04-05 22:18:52 +0000
committerPierre Muller <muller@ics.u-strasbg.fr>2010-04-05 22:18:52 +0000
commita568c9181a1f54fa3d8fec88fe72202c852ae23c (patch)
treec3d4ba11f423a511be9fd735d92738cfac63ebd9 /gdb/go32-nat.c
parent7bebc910a083e8ec400f894fe5df4f37c29ce2b2 (diff)
downloadgdb-a568c9181a1f54fa3d8fec88fe72202c852ae23c.tar.gz
Remove remaining "%ll" uses.
* go32-nat.c (go32_pte_for_address): Replace "0x%llx" using hex_string call. * rs6000-nat.c (rs6000_ptrace64): Idem. * solib-pa64.c (pa64_current_sos): Idem. * solib-spu.c (spu_current_sos): Idem. * linux-nat.c (linux_nat_find_memory_regions): Replace "%lld" using plongest call. * nto-procfs.c (procfs_meminfo): Replace "0x%016llx" using phex (VAR, 8) call. * sh64-tdep.c (sh64_show_media_regs): Idem.
Diffstat (limited to 'gdb/go32-nat.c')
-rw-r--r--gdb/go32-nat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c
index 5b0c98575c6..0345e5618b7 100644
--- a/gdb/go32-nat.c
+++ b/gdb/go32-nat.c
@@ -2047,8 +2047,8 @@ go32_pte_for_address (char *arg, int from_tty)
int pte_idx = (addr >> 12) & 0x3ff;
unsigned offs = addr & 0xfff;
- printf_filtered ("Page Table entry for address 0x%llx:\n",
- (unsigned long long)addr);
+ printf_filtered ("Page Table entry for address %s:\n",
+ hex_string(addr));
display_ptable_entry (get_pte (get_pde (pde_idx), pte_idx), 0, 1, offs);
}
}