diff options
author | Alan Modra <amodra@gmail.com> | 2000-09-29 07:14:05 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-09-29 07:14:05 +0000 |
commit | ef6acf5b5f793ca2aa13f8c06db61c423fdc2775 (patch) | |
tree | 364adbc00638012dbea182b076b7a81e804ed88a /bfd | |
parent | 6c99a5c30b701c9eacaa5c33e60a4cc8e977746e (diff) | |
download | gdb-ef6acf5b5f793ca2aa13f8c06db61c423fdc2775.zip gdb-ef6acf5b5f793ca2aa13f8c06db61c423fdc2775.tar.gz gdb-ef6acf5b5f793ca2aa13f8c06db61c423fdc2775.tar.bz2 |
That'll teach me not to type little patches in by hand. Get
the parentheses right.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/elf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1787,7 +1787,7 @@ elf_fake_sections (abfd, asect, failedptrarg) || this_hdr->sh_info == elf_tdata (abfd)->cverrefs); } else if ((asect->flags & SEC_ALLOC) != 0 - && ((asect->flags & (SEC_LOAD | SEC_HAS_CONTENTS) == 0))) + && ((asect->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)) this_hdr->sh_type = SHT_NOBITS; else this_hdr->sh_type = SHT_PROGBITS; |