summaryrefslogtreecommitdiff
path: root/bfd/i386linux.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2018-02-21 13:07:59 +1030
committerAlan Modra <amodra@gmail.com>2018-02-26 09:32:35 +1030
commit59d08d6ce8cb6c41691266e133304c961c270e85 (patch)
treeccf00572c5b780a7be10b02d4f13b6e40371a398 /bfd/i386linux.c
parent90b6238f06197c2abff953ab5920ae5b6d39f97f (diff)
downloadbinutils-gdb-59d08d6ce8cb6c41691266e133304c961c270e85.tar.gz
AOUT/COFF/PE messages
Capitalization, full-stops and unnecessary trailing \n fixes. * aout-adobe.c, * aout-cris.c, * i386linux.c, * m68klinux.c, * sparclinux.c, * coff-alpha.c, * coff-arm.c, * coff-mcore.c, * coffcode.h, * coffgen.c, * cofflink.c, * ecoff.c, * pe-mips.c, * peXXigen.c, * peicode.h: Standardize error/warning messages.
Diffstat (limited to 'bfd/i386linux.c')
-rw-r--r--bfd/i386linux.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/bfd/i386linux.c b/bfd/i386linux.c
index 74f208a89e6..0887ecb4c89 100644
--- a/bfd/i386linux.c
+++ b/bfd/i386linux.c
@@ -413,7 +413,7 @@ linux_tally_symbols (struct linux_link_hash_entry *h, void * data)
alloc = (char *) bfd_malloc ((bfd_size_type) strlen (name) + 1);
if (p == NULL || alloc == NULL)
- _bfd_error_handler (_("Output file requires shared library `%s'\n"),
+ _bfd_error_handler (_("output file requires shared library `%s'"),
name);
else
{
@@ -421,7 +421,7 @@ linux_tally_symbols (struct linux_link_hash_entry *h, void * data)
p = strrchr (alloc, '_');
*p++ = '\0';
_bfd_error_handler
- (_("Output file requires shared library `%s.so.%s'\n"),
+ (_("output file requires shared library `%s.so.%s'"),
alloc, p);
free (alloc);
}
@@ -608,7 +608,7 @@ linux_finish_dynamic_link (bfd *output_bfd,
&& f->h->root.root.type != bfd_link_hash_defweak)
{
_bfd_error_handler
- (_("Symbol %s not defined for fixups\n"),
+ (_("symbol %s not defined for fixups"),
f->h->root.root.root.string);
continue;
}
@@ -658,7 +658,7 @@ linux_finish_dynamic_link (bfd *output_bfd,
&& f->h->root.root.type != bfd_link_hash_defweak)
{
_bfd_error_handler
- (_("Symbol %s not defined for fixups\n"),
+ (_("symbol %s not defined for fixups"),
f->h->root.root.root.string);
continue;
}
@@ -682,7 +682,7 @@ linux_finish_dynamic_link (bfd *output_bfd,
if (linux_hash_table (info)->fixup_count != fixups_written)
{
- _bfd_error_handler (_("Warning: fixup count mismatch\n"));
+ _bfd_error_handler (_("warning: fixup count mismatch"));
while (linux_hash_table (info)->fixup_count > fixups_written)
{
bfd_put_32 (output_bfd, (bfd_vma) 0, fixup_table);