diff options
author | Alan Modra <amodra@gmail.com> | 2015-04-15 11:24:30 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2015-04-15 11:26:34 +0930 |
commit | 95b57adeb751b56a1192867f9f1e1be2fad608dd (patch) | |
tree | 5dc49004fc8c68f6a95fc078ff006f9b55310266 /bfd | |
parent | 69cb14a0d7eebe90e60e911c9ab311553079c6d1 (diff) | |
download | fsf-binutils-gdb-95b57adeb751b56a1192867f9f1e1be2fad608dd.zip fsf-binutils-gdb-95b57adeb751b56a1192867f9f1e1be2fad608dd.tar.gz fsf-binutils-gdb-95b57adeb751b56a1192867f9f1e1be2fad608dd.tar.bz2 |
Fix typo in commit 6ff71e76
* elf32-rl78.c (rl78_elf_relocate_section): Typo fix.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/elf32-rl78.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 49202af..17610e0 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2015-04-15 Alan Modra <amodra@gmail.com> + + * elf32-rl78.c (rl78_elf_relocate_section): Typo fix. + 2015-04-14 Nick Clifton <nickc@redhat.com> * elf32-rl78.c (RL78_OP_REL): New macro. diff --git a/bfd/elf32-rl78.c b/bfd/elf32-rl78.c index 2822547..ff3af7b 100644 --- a/bfd/elf32-rl78.c +++ b/bfd/elf32-rl78.c @@ -753,7 +753,7 @@ rl78_elf_relocate_section name = h->root.root.string; } - if (sec != NULL && discarded_section (sec) + if (sec != NULL && discarded_section (sec)) RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section, rel, 1, relend, howto, 0, contents); |