diff options
Diffstat (limited to 'bfd/coff-tic4x.c')
-rw-r--r-- | bfd/coff-tic4x.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/coff-tic4x.c b/bfd/coff-tic4x.c index 9b30f7c4420..4f86b5ee189 100644 --- a/bfd/coff-tic4x.c +++ b/bfd/coff-tic4x.c @@ -180,8 +180,8 @@ tic4x_lookup_howto (arelent *internal, } } - (*_bfd_error_handler) (_("Unrecognized reloc type 0x%x"), - (unsigned int) dst->r_type); + _bfd_error_handler (_("Unrecognized reloc type 0x%x"), + (unsigned int) dst->r_type); abort(); } @@ -222,7 +222,7 @@ tic4x_reloc_processing (arelent *relent, { if (reloc->r_symndx < 0 || reloc->r_symndx >= obj_conv_table_size (abfd)) { - (*_bfd_error_handler) + _bfd_error_handler (_("%s: warning: illegal symbol index %ld in relocs"), bfd_get_filename (abfd), reloc->r_symndx); relent->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr; |