aboutsummaryrefslogtreecommitdiff
path: root/bfd/m68klinux.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/m68klinux.c
parent90b6238f06197c2abff953ab5920ae5b6d39f97f (diff)
downloadgdb-59d08d6ce8cb6c41691266e133304c961c270e85.zip
gdb-59d08d6ce8cb6c41691266e133304c961c270e85.tar.gz
gdb-59d08d6ce8cb6c41691266e133304c961c270e85.tar.bz2
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/m68klinux.c')
-rw-r--r--bfd/m68klinux.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/bfd/m68klinux.c b/bfd/m68klinux.c
index a55432d..eb0401f 100644
--- a/bfd/m68klinux.c
+++ b/bfd/m68klinux.c
@@ -416,7 +416,7 @@ linux_tally_symbols (struct linux_link_hash_entry *h,
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
{
@@ -425,7 +425,7 @@ linux_tally_symbols (struct linux_link_hash_entry *h,
*p++ = '\0';
_bfd_error_handler
/* xgettext:c-format */
- (_("Output file requires shared library `%s.so.%s'\n"),
+ (_("output file requires shared library `%s.so.%s'"),
alloc, p);
free (alloc);
}
@@ -614,7 +614,7 @@ linux_finish_dynamic_link (bfd *output_bfd, struct bfd_link_info *info)
&& 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;
}
@@ -662,7 +662,7 @@ linux_finish_dynamic_link (bfd *output_bfd, struct bfd_link_info *info)
&& 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;
}
@@ -686,7 +686,7 @@ linux_finish_dynamic_link (bfd *output_bfd, struct bfd_link_info *info)
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);