diff options
Diffstat (limited to 'bfd/coff-i860.c')
-rw-r--r-- | bfd/coff-i860.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/coff-i860.c b/bfd/coff-i860.c index 7516864..5bf5231 100644 --- a/bfd/coff-i860.c +++ b/bfd/coff-i860.c @@ -143,7 +143,7 @@ coff_i860_reloc_nyi (bfd *abfd ATTRIBUTE_UNUSED, char **error_message ATTRIBUTE_UNUSED) { reloc_howto_type *howto = reloc_entry->howto; - (*_bfd_error_handler) (_("relocation `%s' not yet implemented"), howto->name); + _bfd_error_handler (_("relocation `%s' not yet implemented"), howto->name); return bfd_reloc_notsupported; } @@ -603,7 +603,7 @@ i860_reloc_processing (arelent *cache_ptr, struct internal_reloc *dst, { if (dst->r_symndx < 0 || dst->r_symndx >= obj_conv_table_size (abfd)) { - (*_bfd_error_handler) + _bfd_error_handler (_("%B: warning: illegal symbol index %ld in relocs"), abfd, dst->r_symndx); cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr; |