diff options
author | Pierre Muller <muller@sourceware.org> | 2010-04-05 22:18:53 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2010-04-05 22:18:53 +0000 |
commit | 2244ba2e4ab60c3d509b78893ade3a7efb6618cc (patch) | |
tree | 3a2ec5d88b3dac66237f00fd5c59c0087584631b /gdb/rs6000-nat.c | |
parent | fce3c1f0f17879e1c60d1acb277a232f37255aab (diff) | |
download | gdb-2244ba2e4ab60c3d509b78893ade3a7efb6618cc.zip gdb-2244ba2e4ab60c3d509b78893ade3a7efb6618cc.tar.gz gdb-2244ba2e4ab60c3d509b78893ade3a7efb6618cc.tar.bz2 |
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/rs6000-nat.c')
-rw-r--r-- | gdb/rs6000-nat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/rs6000-nat.c b/gdb/rs6000-nat.c index fb17d31..fbdbdb2 100644 --- a/gdb/rs6000-nat.c +++ b/gdb/rs6000-nat.c @@ -200,8 +200,8 @@ rs6000_ptrace64 (int req, int id, long long addr, int data, void *buf) int ret = 0; #endif #if 0 - printf ("rs6000_ptrace64 (%d, %d, 0x%llx, %08x, 0x%x) = 0x%x\n", - req, id, addr, data, (unsigned int)buf, ret); + printf ("rs6000_ptrace64 (%d, %d, %s, %08x, 0x%x) = 0x%x\n", + req, id, hex_string (addr), data, (unsigned int)buf, ret); #endif return ret; } |