diff options
Diffstat (limited to 'bfd/aout-cris.c')
-rw-r--r-- | bfd/aout-cris.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bfd/aout-cris.c b/bfd/aout-cris.c index 59ef6db..efed721 100644 --- a/bfd/aout-cris.c +++ b/bfd/aout-cris.c @@ -196,8 +196,8 @@ MY (swap_ext_reloc_out) (bfd *abfd, We may change this later, but assert this for the moment. */ if (r_type > 2) { - (*_bfd_error_handler) (_("%s: Invalid relocation type exported: %d"), - bfd_get_filename (abfd), r_type); + _bfd_error_handler (_("%s: Invalid relocation type exported: %d"), + bfd_get_filename (abfd), r_type); bfd_set_error (bfd_error_wrong_format); } @@ -239,8 +239,8 @@ MY (swap_ext_reloc_in) (bfd *abfd, if (r_type > 2) { - (*_bfd_error_handler) (_("%B: Invalid relocation type imported: %d"), - abfd, r_type); + _bfd_error_handler (_("%B: Invalid relocation type imported: %d"), + abfd, r_type); bfd_set_error (bfd_error_wrong_format); } @@ -249,7 +249,7 @@ MY (swap_ext_reloc_in) (bfd *abfd, if (r_extern && r_index > symcount) { - (*_bfd_error_handler) + _bfd_error_handler (_("%B: Bad relocation record imported: %d"), abfd, r_index); bfd_set_error (bfd_error_wrong_format); |