diff options
Diffstat (limited to 'bfd/elf32-vax.c')
-rw-r--r-- | bfd/elf32-vax.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bfd/elf32-vax.c b/bfd/elf32-vax.c index 41c52f1..a1cd1a1 100644 --- a/bfd/elf32-vax.c +++ b/bfd/elf32-vax.c @@ -287,8 +287,8 @@ rtype_to_howto (bfd *abfd, arelent *cache_ptr, Elf_Internal_Rela *dst) r_type = ELF32_R_TYPE (dst->r_info); if (r_type >= R_VAX_max) { - (*_bfd_error_handler) (_("%B: unrecognised VAX reloc number: %d"), - abfd, r_type); + _bfd_error_handler (_("%B: unrecognised VAX reloc number: %d"), + abfd, r_type); bfd_set_error (bfd_error_bad_value); r_type = R_VAX_NONE; } @@ -658,7 +658,7 @@ elf_vax_check_relocs (bfd *abfd, struct bfd_link_info *info, asection *sec, { h->got.refcount++; if (eh->got_addend != (bfd_vma) rel->r_addend) - (*_bfd_error_handler) + _bfd_error_handler (_("%s: warning: GOT addend of %ld to `%s' does" " not match previous GOT addend of %ld"), bfd_get_filename (abfd), rel->r_addend, @@ -1545,7 +1545,7 @@ elf_vax_relocate_section (bfd *output_bfd, h->plt.offset |= 1; } else if (rel->r_addend != 0) - (*_bfd_error_handler) + _bfd_error_handler (_("%s: warning: PLT addend of %d to `%s' from %s section ignored"), bfd_get_filename (input_bfd), rel->r_addend, h->root.root.string, @@ -1670,13 +1670,13 @@ elf_vax_relocate_section (bfd *output_bfd, && ELF32_R_TYPE (outrel.r_info) != R_VAX_GLOB_DAT)) { if (h != NULL) - (*_bfd_error_handler) + _bfd_error_handler (_("%s: warning: %s relocation against symbol `%s' from %s section"), bfd_get_filename (input_bfd), howto->name, h->root.root.string, bfd_get_section_name (input_bfd, input_section)); else - (*_bfd_error_handler) + _bfd_error_handler (_("%s: warning: %s relocation to 0x%x from %s section"), bfd_get_filename (input_bfd), howto->name, outrel.r_addend, |