aboutsummaryrefslogtreecommitdiff
path: root/gdb/auxv.c
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2008-09-04 22:49:30 +0000
committerDoug Evans <dje@google.com>2008-09-04 22:49:30 +0000
commit623d3eb139cf841da1f6fd08c68c29b12b74ddb0 (patch)
tree1ba0e24313a07a5a86c93a8ca1fb8db73f848369 /gdb/auxv.c
parentb02a33db5021ba4b61115784a689d1017181872a (diff)
downloadbinutils-623d3eb139cf841da1f6fd08c68c29b12b74ddb0.zip
binutils-623d3eb139cf841da1f6fd08c68c29b12b74ddb0.tar.gz
binutils-623d3eb139cf841da1f6fd08c68c29b12b74ddb0.tar.bz2
* defs.h (plongest,pulongest): Renamed from paddr_u,paddr_d.
Change argument of pulongest from CORE_ADDR to ULONGEST. All callers updated. * utils.c (plongest): Renamed from paddr_d. (pulongest): Renamed from paddr_u, change arg type to ULONGEST. * remote-mips.c (send_srec): Use paddr_nz instead of paddr_u in `CORE_ADDR addr' arg of error message.
Diffstat (limited to 'gdb/auxv.c')
-rw-r--r--gdb/auxv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/auxv.c b/gdb/auxv.c
index 549b666..0baec1a 100644
--- a/gdb/auxv.c
+++ b/gdb/auxv.c
@@ -229,11 +229,11 @@ fprint_target_auxv (struct ui_file *file, struct target_ops *ops)
}
fprintf_filtered (file, "%-4s %-20s %-30s ",
- paddr_d (type), name, description);
+ plongest (type), name, description);
switch (flavor)
{
case dec:
- fprintf_filtered (file, "%s\n", paddr_d (val));
+ fprintf_filtered (file, "%s\n", plongest (val));
break;
case hex:
fprintf_filtered (file, "0x%s\n", paddr_nz (val));