diff options
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; } |