diff options
author | Stan Shebs <shebs@codesourcery.com> | 1994-04-15 21:55:49 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1994-04-15 21:55:49 +0000 |
commit | fad466eb6de0629edc89081998337fd13566e989 (patch) | |
tree | 0190472f3bd8a3ce36a30ba310c4aa2acfb5cfc0 /gdb/mdebugread.c | |
parent | 97ea252ef8065df3fcc039801fcc370aa3e3c00f (diff) | |
download | gdb-fad466eb6de0629edc89081998337fd13566e989.zip gdb-fad466eb6de0629edc89081998337fd13566e989.tar.gz gdb-fad466eb6de0629edc89081998337fd13566e989.tar.bz2 |
Fri Apr 15 11:53:46 1994 Stan Shebs (shebs@andros.cygnus.com)
* source.c (DIRNAME_SEPARATOR): New macro, replaces all references
to : in search path processing.
* defs.h (qsort): Rename argument in prototype.
* symtab.h (SAYMBOL_VALUE): Rename value field, avoids bugs in
some compilers.
* breakpoint.c, exec.c, mdebugread.c, mipsread.c, xcoffexec.c
(false): Eliminate usages.
Diffstat (limited to 'gdb/mdebugread.c')
-rw-r--r-- | gdb/mdebugread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c index 81e6945..cd0efa8 100644 --- a/gdb/mdebugread.c +++ b/gdb/mdebugread.c @@ -3767,8 +3767,8 @@ elfmdebug_build_psymtabs (objfile, swap, sec, section_offsets) struct ecoff_debug_info *info; buf = alloca (swap->external_hdr_size); - if (bfd_get_section_contents (abfd, sec, buf, (file_ptr) 0, - swap->external_hdr_size) == false) + if (!bfd_get_section_contents (abfd, sec, buf, (file_ptr) 0, + swap->external_hdr_size)) perror_with_name (bfd_get_filename (abfd)); info = ((struct ecoff_debug_info *) |