Remove newly introduced whitespace from warnings.

* messages.c (as_warn_internal): Remove extra whitespace from
	warning messages.
This commit is contained in:
mfortune 2014-05-20 23:34:19 +01:00
parent 82bda27b2f
commit 153ff4340d
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
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.

View File

@ -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