diff options
author | Alan Modra <amodra@gmail.com> | 2014-05-22 18:53:22 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2014-05-22 18:53:22 +0930 |
commit | b52855e7a06171f98918f9a35de695fa9a3abd88 (patch) | |
tree | 1521539ee7fa62797d0cc85150afd359040a1a9f /gas/listing.c | |
parent | a0fed88764b4c42e856564171d035c0e8acc903f (diff) | |
download | gdb-b52855e7a06171f98918f9a35de695fa9a3abd88.zip gdb-b52855e7a06171f98918f9a35de695fa9a3abd88.tar.gz gdb-b52855e7a06171f98918f9a35de695fa9a3abd88.tar.bz2 |
Fix whitespace in gas listing errors and warnings
gas/
* listing.c (listing_warning, listing_error): Add space after colon.
* messages.c (as_warn_internal, as_bad_internal): Use the same
string as above.
gas/testsuite/
* gas/d30v/bittest.l: Update for changed whitespace.
* gas/d30v/serial.l: Likewise.
* gas/d30v/serial2.l: Likewise.
* gas/d30v/serial2O.l: Likewise.
* gas/d30v/warn_oddreg.l: Likewise.
* gas/i386/inval-equ-2.l: Likewise.
* gas/i386/mpx-inval-1.l: Likewise.
* gas/i386/sse-check-error.l: Likewise.
* gas/i386/x86-64-mpx-inval-1.l: Likewise.
* gas/i386/x86-64-mpx-inval-2.l: Likewise.
* gas/i386/x86-64-size-inval-1.l: Likewise.
* gas/i386/x86-64-sse-check-error.l: Likewise.
Diffstat (limited to 'gas/listing.c')
-rw-r--r-- | gas/listing.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/listing.c b/gas/listing.c index 24450cf..0192dd0 100644 --- a/gas/listing.c +++ b/gas/listing.c @@ -253,13 +253,13 @@ listing_message (const char *name, const char *message) void listing_warning (const char *message) { - listing_message (_("Warning:"), message); + listing_message (_("Warning: "), message); } void listing_error (const char *message) { - listing_message (_("Error:"), message); + listing_message (_("Error: "), message); } static file_info_type * |