diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-04-02 22:36:04 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-04-02 22:36:04 +0000 |
commit | b580c2b543bf3d5bbd3fc7e3f74227a59e92af1d (patch) | |
tree | 7b2d61a1b1ec9f66cd8d0651219461769ce44054 /bfd/seclet.c | |
parent | 1b8a42f353def1d2ca03871657a32cf90ae159b3 (diff) | |
download | gdb-b580c2b543bf3d5bbd3fc7e3f74227a59e92af1d.zip gdb-b580c2b543bf3d5bbd3fc7e3f74227a59e92af1d.tar.gz gdb-b580c2b543bf3d5bbd3fc7e3f74227a59e92af1d.tar.bz2 |
* seclet.c (seclet_dump_seclet): Correct SEC_HAS_CONTENTS test.
Diffstat (limited to 'bfd/seclet.c')
-rw-r--r-- | bfd/seclet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/seclet.c b/bfd/seclet.c index b2b61bb..5b4d764 100644 --- a/bfd/seclet.c +++ b/bfd/seclet.c @@ -128,7 +128,7 @@ DEFUN(seclet_dump_seclet,(abfd, seclet, section, data, relocateable), d[i] = seclet->u.fill.value ; } /* Don't bother to fill in empty sections */ - if (!bfd_get_section_flags(abfd, section) & SEC_HAS_CONTENTS) + if (!(bfd_get_section_flags(abfd, section) & SEC_HAS_CONTENTS)) { return true; } |