diff options
Diffstat (limited to 'bfd/ieee.c')
-rw-r--r-- | bfd/ieee.c | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -156,8 +156,7 @@ ieee_write_id (bfd *abfd, const char *id) { _bfd_error_handler /* xgettext:c-format */ - (_("%s: string too long (%d chars, max 65535)"), - bfd_get_filename (abfd), length); + (_("%B: string too long (%d chars, max 65535)"), abfd, length); bfd_set_error (bfd_error_invalid_operation); return FALSE; } @@ -291,9 +290,8 @@ ieee_write_expression (bfd *abfd, { _bfd_error_handler /* xgettext:c-format */ - (_("%s: unrecognized symbol `%s' flags 0x%x"), - bfd_get_filename (abfd), bfd_asymbol_name (symbol), - symbol->flags); + (_("%B: unrecognized symbol `%s' flags 0x%x"), + abfd, bfd_asymbol_name (symbol), symbol->flags); bfd_set_error (bfd_error_invalid_operation); return FALSE; } |