aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authormfortune <matthew.fortune@imgtec.com>2014-05-20 23:34:19 +0100
committermfortune <matthew.fortune@imgtec.com>2014-05-20 23:40:49 +0100
commit153ff4340d8d2a4ddd53cf953e19aeef3bb7d5dc (patch)
treeb553a6a9a34ca6cf21d71729401d9031aa034416 /gas
parent82bda27b2f439498b5c8b4941d8d47bdfe916688 (diff)
downloadgdb-153ff4340d8d2a4ddd53cf953e19aeef3bb7d5dc.zip
gdb-153ff4340d8d2a4ddd53cf953e19aeef3bb7d5dc.tar.gz
gdb-153ff4340d8d2a4ddd53cf953e19aeef3bb7d5dc.tar.bz2
Remove newly introduced whitespace from warnings.
* messages.c (as_warn_internal): Remove extra whitespace from warning messages.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/messages.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 130b287..51974b5 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,5 +1,10 @@
2014-05-20 Matthew Fortune <matthew.fortune@imgtec.com>
+ * messages.c (as_warn_internal): Remove extra whitespace from
+ warning messages.
+
+2014-05-20 Matthew Fortune <matthew.fortune@imgtec.com>
+
* config/tc-mips.c (FP64_ASES): Add ASE_MSA.
(mips_after_parse_args): Do not select ASE_MSA without -mfp64.
diff --git a/gas/messages.c b/gas/messages.c
index 05c7442..d592b36 100644
--- a/gas/messages.c
+++ b/gas/messages.c
@@ -151,12 +151,12 @@ as_warn_internal (char *file, unsigned int line, char *buffer)
if (file)
{
if (line != 0)
- fprintf (stderr, "%s:%u: %s %s\n", file, line, _("Warning: "), buffer);
+ fprintf (stderr, "%s:%u: %s %s\n", file, line, _("Warning:"), buffer);
else
- fprintf (stderr, "%s: %s %s\n", file, _("Warning: "), buffer);
+ fprintf (stderr, "%s: %s %s\n", file, _("Warning:"), buffer);
}
else
- fprintf (stderr, "%s %s\n", _("Warning: "), buffer);
+ fprintf (stderr, "%s %s\n", _("Warning:"), buffer);
#ifndef NO_LISTING
listing_warning (buffer);
#endif