diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-03-05 16:38:07 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-03-05 16:38:07 +0000 |
commit | 58841d58e552800c90ceb77f6c5a3a62091e23bd (patch) | |
tree | 464d50b59e9173096d210d5994afb665418ec15b /gdb/dsrec.c | |
parent | c663138840a39a5c9aefc853f2b6e963ff0446bb (diff) | |
download | gdb-58841d58e552800c90ceb77f6c5a3a62091e23bd.zip gdb-58841d58e552800c90ceb77f6c5a3a62091e23bd.tar.gz gdb-58841d58e552800c90ceb77f6c5a3a62091e23bd.tar.bz2 |
* ocd.h (ocd_xfer_memory): Add ``attrib'' parameter.
* ocd.c (ocd_xfer_memory): Ditto.
* ser-ocd.c (ocd_setstopbits): New function. Add to ocd_ops.
* MAINTAINERS: Document powerpc-eabi and powerpcle-eabi as
buildable with ,-Werror.
* Makefile.in (symfile_h): Define.
(mcore-tdep.o): Add $(symfile_h), $(gdbcore_h) and $(inferior_h).
* mcore-tdep.c: Include "symfile.h", "gdbcore.h" and "inferior.h".
* MAINTAINERS: Document mcore-elf and mcore-pe as buildable with
,-Werror.
* dsrec.c (make_srec): Fix internal_error fmt arg.
* MAINTAINERS: Document i960-coff as buildable with ,-Werror.
Diffstat (limited to 'gdb/dsrec.c')
-rw-r--r-- | gdb/dsrec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/dsrec.c b/gdb/dsrec.c index 7c7941e..4995a3c 100644 --- a/gdb/dsrec.c +++ b/gdb/dsrec.c @@ -251,8 +251,8 @@ make_srec (char *srec, CORE_ADDR targ_addr, bfd *abfd, asection *sect, addr_size = 4; else internal_error (__FILE__, __LINE__, - "make_srec: Bad address (0x%x), or bad flags (0x%x).", - targ_addr, flags); + "make_srec: Bad address (0x%s), or bad flags (0x%x).", + paddr (targ_addr), flags); /* Now that we know the address size, we can figure out how much data this record can hold. */ |