diff options
author | Alan Modra <amodra@gmail.com> | 2018-02-21 13:07:59 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2018-02-26 09:32:35 +1030 |
commit | 59d08d6ce8cb6c41691266e133304c961c270e85 (patch) | |
tree | ccf00572c5b780a7be10b02d4f13b6e40371a398 /bfd/aout-cris.c | |
parent | 90b6238f06197c2abff953ab5920ae5b6d39f97f (diff) | |
download | gdb-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/aout-cris.c')
-rw-r--r-- | bfd/aout-cris.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/aout-cris.c b/bfd/aout-cris.c index 1c89fe3..6a3480e 100644 --- a/bfd/aout-cris.c +++ b/bfd/aout-cris.c @@ -197,7 +197,7 @@ MY (swap_ext_reloc_out) (bfd *abfd, if (r_type > 2) { /* xgettext:c-format */ - _bfd_error_handler (_("%pB: Invalid relocation type exported: %d"), + _bfd_error_handler (_("%pB: invalid relocation type exported: %d"), abfd, r_type); bfd_set_error (bfd_error_wrong_format); @@ -241,7 +241,7 @@ MY (swap_ext_reloc_in) (bfd *abfd, if (r_type > 2) { /* xgettext:c-format */ - _bfd_error_handler (_("%pB: Invalid relocation type imported: %d"), + _bfd_error_handler (_("%pB: invalid relocation type imported: %d"), abfd, r_type); bfd_set_error (bfd_error_wrong_format); @@ -253,7 +253,7 @@ MY (swap_ext_reloc_in) (bfd *abfd, { _bfd_error_handler /* xgettext:c-format */ - (_("%pB: Bad relocation record imported: %d"), abfd, r_index); + (_("%pB: bad relocation record imported: %d"), abfd, r_index); bfd_set_error (bfd_error_wrong_format); |