diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 1999-06-02 02:53:21 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 1999-06-02 02:53:21 +0000 |
commit | 70f06c4ad05fdc4ab02b35b0f1e4453feaa7603b (patch) | |
tree | adc56f8ca2215e2fd13a99aeb8dd24b90db0d464 /bfd/elf32-m68k.c | |
parent | ac9a91a77ce5ce484bf8f62582292ef1f5b4dcf3 (diff) | |
download | gdb-70f06c4ad05fdc4ab02b35b0f1e4453feaa7603b.zip gdb-70f06c4ad05fdc4ab02b35b0f1e4453feaa7603b.tar.gz gdb-70f06c4ad05fdc4ab02b35b0f1e4453feaa7603b.tar.bz2 |
* elf32-m68k.c (elf_m68k_adjust_dynamic_symbol): Avoid ambigous
`else'.
Diffstat (limited to 'bfd/elf32-m68k.c')
-rw-r--r-- | bfd/elf32-m68k.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/bfd/elf32-m68k.c b/bfd/elf32-m68k.c index 138c7ee..23ecf36 100644 --- a/bfd/elf32-m68k.c +++ b/bfd/elf32-m68k.c @@ -1008,10 +1008,12 @@ elf_m68k_adjust_dynamic_symbol (info, h) /* If this is the first .plt entry, make room for the special first entry. */ if (s->_raw_size == 0) - if ( CPU32_FLAG (dynobj)) - s->_raw_size += PLT_CPU32_ENTRY_SIZE; - else - s->_raw_size += PLT_ENTRY_SIZE; + { + if (CPU32_FLAG (dynobj)) + s->_raw_size += PLT_CPU32_ENTRY_SIZE; + else + s->_raw_size += PLT_ENTRY_SIZE; + } /* If this symbol is not defined in a regular file, and we are not generating a shared library, then set the symbol to this |