diff options
author | Alan Modra <amodra@gmail.com> | 2017-04-13 10:44:20 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2017-04-13 17:07:23 +0930 |
commit | 10463f39c79843c2c141481a0781091870695b17 (patch) | |
tree | 376da2921bc7cfb861ebfc72ce8b5f3ebd311e24 /bfd/elf64-ppc.c | |
parent | 4af8774e1559b2a4e098ca0e4fc5daf857c633c1 (diff) | |
download | binutils-gdb-10463f39c79843c2c141481a0781091870695b17.tar.gz |
Missing _bfd_error_handler args
* elf32-arm.c (arm_type_of_stub): Supply missing args to "long
branch veneers" error. Fix double space and format message.
* elf32-avr.c (avr_add_stub): Do not pass NULL as %B arg.
* elf64-ppc.c (tocsave_find): Supply missing %B arg.
Diffstat (limited to 'bfd/elf64-ppc.c')
-rw-r--r-- | bfd/elf64-ppc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf64-ppc.c b/bfd/elf64-ppc.c index 386db9a0dfe..e48d67d19b6 100644 --- a/bfd/elf64-ppc.c +++ b/bfd/elf64-ppc.c @@ -7651,7 +7651,7 @@ tocsave_find (struct ppc_link_hash_table *htab, if (ent.sec == NULL || ent.sec->output_section == NULL) { _bfd_error_handler - (_("%B: undefined symbol on R_PPC64_TOCSAVE relocation")); + (_("%B: undefined symbol on R_PPC64_TOCSAVE relocation"), ibfd); return NULL; } |