aboutsummaryrefslogtreecommitdiff
path: root/gdb/maint.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/maint.c')
-rw-r--r--gdb/maint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/maint.c b/gdb/maint.c
index 3190bd7..b223f25 100644
--- a/gdb/maint.c
+++ b/gdb/maint.c
@@ -485,7 +485,7 @@ maintenance_translate_address (char *arg, int from_tty)
if (sym)
printf_filtered ("%s+%s\n",
SYMBOL_PRINT_NAME (sym),
- paddr_u (address - SYMBOL_VALUE_ADDRESS (sym)));
+ pulongest (address - SYMBOL_VALUE_ADDRESS (sym)));
else if (sect)
printf_filtered (_("no symbol at %s:0x%s\n"), sect->name, paddr (address));
else