diff options
author | Fred Fish <fnf@specifix.com> | 1997-06-12 04:26:37 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1997-06-12 04:26:37 +0000 |
commit | 79a682fd3e5d98652eeb7fe002efe14ac8cf3950 (patch) | |
tree | 3f0ddbfa03fecef74d5f2604b39d6357df032550 /bfd | |
parent | c370b3cd95f7002f6c51266165caaeae4e6e1982 (diff) | |
download | gdb-79a682fd3e5d98652eeb7fe002efe14ac8cf3950.zip gdb-79a682fd3e5d98652eeb7fe002efe14ac8cf3950.tar.gz gdb-79a682fd3e5d98652eeb7fe002efe14ac8cf3950.tar.bz2 |
Back out last change, there are too many more to fix them all.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/coffgen.c | 2 |
2 files changed, 1 insertions, 6 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 35c9cb3..4d827dd 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,8 +1,3 @@ -Wed Jun 11 20:17:03 1997 Fred Fish <fnf@cygnus.com> - - * coffgen.c (_bfd_coff_is_local_label_name): Return proper boolean - (enum) type. - Wed Jun 11 00:00:07 1997 Ian Lance Taylor <ian@cygnus.com> * elflink.h (elf_link_output_extsym): Call finish_dynamic_symbol diff --git a/bfd/coffgen.c b/bfd/coffgen.c index 8724715..3d7e85a 100644 --- a/bfd/coffgen.c +++ b/bfd/coffgen.c @@ -2097,7 +2097,7 @@ _bfd_coff_is_local_label_name (abfd, name) bfd *abfd; const char *name; { - return ((name[0] == '.' && name[1] == 'L') ? true : false); + return name[0] == '.' && name[1] == 'L'; } /* Provided a BFD, a section and an offset into the section, calculate |