diff options
Diffstat (limited to 'bfd/coffgen.c')
-rw-r--r-- | bfd/coffgen.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bfd/coffgen.c b/bfd/coffgen.c index b9b8860..216102e 100644 --- a/bfd/coffgen.c +++ b/bfd/coffgen.c @@ -173,7 +173,7 @@ make_a_section_from_file (bfd *abfd, case compress: if (!bfd_init_section_compress_status (abfd, return_section)) { - (*_bfd_error_handler) + _bfd_error_handler (_("%B: unable to initialize compress status for section %s"), abfd, name); return FALSE; @@ -196,7 +196,7 @@ make_a_section_from_file (bfd *abfd, case decompress: if (!bfd_init_section_decompress_status (abfd, return_section)) { - (*_bfd_error_handler) + _bfd_error_handler (_("%B: unable to initialize decompress status for section %s"), abfd, name); return FALSE; @@ -1704,7 +1704,7 @@ _bfd_coff_read_string_table (bfd *abfd) if (strsize < STRING_SIZE_SIZE) { - (*_bfd_error_handler) + _bfd_error_handler (_("%B: bad string table size %lu"), abfd, (unsigned long) strsize); bfd_set_error (bfd_error_bad_value); return NULL; @@ -3029,7 +3029,7 @@ bfd_coff_gc_sections (bfd *abfd ATTRIBUTE_UNUSED, struct bfd_link_info *info) if (!bed->can_gc_sections || !is_coff_hash_table (info->hash)) { - (*_bfd_error_handler)(_("Warning: gc-sections option ignored")); + _bfd_error_handler(_("Warning: gc-sections option ignored")); return TRUE; } #endif |