diff options
Diffstat (limited to 'bfd/elf32-rl78.c')
-rw-r--r-- | bfd/elf32-rl78.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/bfd/elf32-rl78.c b/bfd/elf32-rl78.c index 70011f9..3ba426f 100644 --- a/bfd/elf32-rl78.c +++ b/bfd/elf32-rl78.c @@ -1192,7 +1192,7 @@ rl78_elf_merge_private_bfd_data (bfd * ibfd, bfd * obfd) but that is still incompatible with the G10 ABI. */ error = TRUE; - (*_bfd_error_handler) + _bfd_error_handler (_("RL78 ABI conflict: G10 file %s cannot be linked with %s file %s"), bfd_get_filename (ibfd), rl78_cpu_name (out_cpu), bfd_get_filename (obfd)); @@ -1208,7 +1208,7 @@ rl78_elf_merge_private_bfd_data (bfd * ibfd, bfd * obfd) { error = TRUE; - (*_bfd_error_handler) + _bfd_error_handler (_("RL78 ABI conflict: cannot link %s file %s with %s file %s"), rl78_cpu_name (in_cpu), bfd_get_filename (ibfd), rl78_cpu_name (out_cpu), bfd_get_filename (obfd)); @@ -1217,15 +1217,15 @@ rl78_elf_merge_private_bfd_data (bfd * ibfd, bfd * obfd) if (changed_flags & E_FLAG_RL78_64BIT_DOUBLES) { - (*_bfd_error_handler) + _bfd_error_handler (_("RL78 merge conflict: cannot link 32-bit and 64-bit objects together")); if (old_flags & E_FLAG_RL78_64BIT_DOUBLES) - (*_bfd_error_handler) (_("- %s is 64-bit, %s is not"), - bfd_get_filename (obfd), bfd_get_filename (ibfd)); + _bfd_error_handler (_("- %s is 64-bit, %s is not"), + bfd_get_filename (obfd), bfd_get_filename (ibfd)); else - (*_bfd_error_handler) (_("- %s is 64-bit, %s is not"), - bfd_get_filename (ibfd), bfd_get_filename (obfd)); + _bfd_error_handler (_("- %s is 64-bit, %s is not"), + bfd_get_filename (ibfd), bfd_get_filename (obfd)); error = TRUE; } } |