aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
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