diff options
Diffstat (limited to 'bfd/elf32-i370.c')
-rw-r--r-- | bfd/elf32-i370.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/bfd/elf32-i370.c b/bfd/elf32-i370.c index 4f6d727..ab68551 100644 --- a/bfd/elf32-i370.c +++ b/bfd/elf32-i370.c @@ -303,8 +303,8 @@ i370_elf_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED, r_type = ELF32_R_TYPE (dst->r_info); if (r_type >= R_I370_max) { - (*_bfd_error_handler) (_("%B: unrecognised I370 reloc number: %d"), - abfd, r_type); + _bfd_error_handler (_("%B: unrecognised I370 reloc number: %d"), + abfd, r_type); bfd_set_error (bfd_error_bad_value); r_type = R_I370_NONE; } @@ -352,7 +352,7 @@ i370_elf_merge_private_bfd_data (bfd *ibfd, bfd *obfd) else /* Incompatible flags. */ { - (*_bfd_error_handler) + _bfd_error_handler ("%B: uses different e_flags (0x%lx) fields than previous modules (0x%lx)", ibfd, (long) new_flags, (long) old_flags); @@ -1074,9 +1074,8 @@ i370_elf_relocate_section (bfd *output_bfd, if ((unsigned) r_type >= (unsigned) R_I370_max || !i370_elf_howto_table[(int)r_type]) { - (*_bfd_error_handler) ("%B: unknown relocation type %d", - input_bfd, - (int) r_type); + _bfd_error_handler ("%B: unknown relocation type %d", + input_bfd, (int) r_type); bfd_set_error (bfd_error_bad_value); ret = FALSE; @@ -1157,7 +1156,7 @@ i370_elf_relocate_section (bfd *output_bfd, switch ((int) r_type) { default: - (*_bfd_error_handler) + _bfd_error_handler ("%B: unknown relocation type %d for symbol %s", input_bfd, (int) r_type, sym_name); @@ -1298,7 +1297,7 @@ i370_elf_relocate_section (bfd *output_bfd, case (int) R_I370_COPY: case (int) R_I370_RELATIVE: - (*_bfd_error_handler) + _bfd_error_handler ("%B: Relocation %s is not yet supported for symbol %s.", input_bfd, i370_elf_howto_table[(int) r_type]->name, |