diff options
author | Doug Evans <dje@google.com> | 2008-09-04 22:49:30 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2008-09-04 22:49:30 +0000 |
commit | 623d3eb139cf841da1f6fd08c68c29b12b74ddb0 (patch) | |
tree | 1ba0e24313a07a5a86c93a8ca1fb8db73f848369 /gdb/remote-mips.c | |
parent | b02a33db5021ba4b61115784a689d1017181872a (diff) | |
download | gdb-623d3eb139cf841da1f6fd08c68c29b12b74ddb0.zip gdb-623d3eb139cf841da1f6fd08c68c29b12b74ddb0.tar.gz gdb-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/remote-mips.c')
-rw-r--r-- | gdb/remote-mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote-mips.c b/gdb/remote-mips.c index 9b8ca0b..bde8614 100644 --- a/gdb/remote-mips.c +++ b/gdb/remote-mips.c @@ -2620,7 +2620,7 @@ send_srec (char *srec, int len, CORE_ADDR addr) case 0x6: /* ACK */ return; case 0x15: /* NACK */ - fprintf_unfiltered (gdb_stderr, "Download got a NACK at byte %s! Retrying.\n", paddr_u (addr)); + fprintf_unfiltered (gdb_stderr, "Download got a NACK at byte 0x%s! Retrying.\n", paddr_nz (addr)); continue; default: error ("Download got unexpected ack char: 0x%x, retrying.\n", ch); |