From b52855e7a06171f98918f9a35de695fa9a3abd88 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Thu, 22 May 2014 18:53:22 +0930 Subject: 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. --- gas/listing.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gas/listing.c') 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 * -- cgit v1.1