diff options
Diffstat (limited to 'bfd/elf32-bfin.c')
-rw-r--r-- | bfd/elf32-bfin.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/bfd/elf32-bfin.c b/bfd/elf32-bfin.c index 2a5390385cc..ff1bcc6f43f 100644 --- a/bfd/elf32-bfin.c +++ b/bfd/elf32-bfin.c @@ -4949,9 +4949,8 @@ elf32_bfin_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info) if (0) #endif _bfd_error_handler - ("old_flags = 0x%.8lx, new_flags = 0x%.8lx, init = %s, filename = %s", - old_flags, new_flags, elf_flags_init (obfd) ? "yes" : "no", - bfd_get_filename (ibfd)); + ("old_flags = 0x%.8lx, new_flags = 0x%.8lx, init = %s, filename = %B", + old_flags, new_flags, elf_flags_init (obfd) ? "yes" : "no", ibfd); if (!elf_flags_init (obfd)) /* First call, no flags set. */ { @@ -4964,12 +4963,12 @@ elf32_bfin_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info) error = TRUE; if (IS_FDPIC (obfd)) _bfd_error_handler - (_("%s: cannot link non-fdpic object file into fdpic executable"), - bfd_get_filename (ibfd)); + (_("%B: cannot link non-fdpic object file into fdpic executable"), + ibfd); else _bfd_error_handler - (_("%s: cannot link fdpic object file into non-fdpic executable"), - bfd_get_filename (ibfd)); + (_("%B: cannot link fdpic object file into non-fdpic executable"), + ibfd); } if (error) |