aboutsummaryrefslogtreecommitdiff
path: root/bfd/elflink.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2009-10-13 04:06:20 +0000
committerAlan Modra <amodra@gmail.com>2009-10-13 04:06:20 +0000
commitfc3e1e3c7e5d81ec71176b7015e1f0b5d81d751f (patch)
treeef3fdcb62e8c66aff3c798e22532556e9df8788e /bfd/elflink.c
parent6811fb560a24f73e45cd6312e092ac1b63914f69 (diff)
downloadgdb-fc3e1e3c7e5d81ec71176b7015e1f0b5d81d751f.zip
gdb-fc3e1e3c7e5d81ec71176b7015e1f0b5d81d751f.tar.gz
gdb-fc3e1e3c7e5d81ec71176b7015e1f0b5d81d751f.tar.bz2
* elflink.c (_bfd_elf_merge_symbol): Revert previous patch.
Diffstat (limited to 'bfd/elflink.c')
-rw-r--r--bfd/elflink.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bfd/elflink.c b/bfd/elflink.c
index 8297a40..02f10ee 100644
--- a/bfd/elflink.c
+++ b/bfd/elflink.c
@@ -1110,19 +1110,19 @@ _bfd_elf_merge_symbol (bfd *abfd,
if (tdef && ntdef)
(*_bfd_error_handler)
- (_("%B: TLS definition in %B section %A mismatches non-TLS definition in %B section %A"),
+ (_("%s: TLS definition in %B section %A mismatches non-TLS definition in %B section %A"),
tbfd, tsec, ntbfd, ntsec, h->root.root.string);
else if (!tdef && !ntdef)
(*_bfd_error_handler)
- (_("%B: TLS reference in %B mismatches non-TLS reference in %B"),
+ (_("%s: TLS reference in %B mismatches non-TLS reference in %B"),
tbfd, ntbfd, h->root.root.string);
else if (tdef)
(*_bfd_error_handler)
- (_("%B: TLS definition in %B section %A mismatches non-TLS reference in %B"),
+ (_("%s: TLS definition in %B section %A mismatches non-TLS reference in %B"),
tbfd, tsec, ntbfd, h->root.root.string);
else
(*_bfd_error_handler)
- (_("%B: TLS reference in %B mismatches non-TLS definition in %B section %A"),
+ (_("%s: TLS reference in %B mismatches non-TLS definition in %B section %A"),
tbfd, ntbfd, ntsec, h->root.root.string);
bfd_set_error (bfd_error_bad_value);