From: Mike Stump Date: Tue, 20 May 2014 19:45:30 +0000 (-0700) Subject: * messages.c (as_warn_internal): Ensure we don't interleave output X-Git-Tag: gdb-7.8-release~303 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=39128ec026ca07a3a1cf2c2096afb3f17fa1d5d8;p=external%2Fbinutils.git * messages.c (as_warn_internal): Ensure we don't interleave output within a single line when make -j is used. (as_bad_internal): Likewise. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 30b616e..0616ad5 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2014-05-20 Mike Stump + + * messages.c (as_warn_internal): Ensure we don't interleave output + within a single line when make -j is used. + (as_bad_internal): Likewise. + 2014-05-20 Richard Sandiford * config/obj-elf.h (obj_elf_seen_attribute): Declare. diff --git a/gas/messages.c b/gas/messages.c index 979253d..05c7442 100644 --- a/gas/messages.c +++ b/gas/messages.c @@ -151,13 +151,12 @@ as_warn_internal (char *file, unsigned int line, char *buffer) if (file) { if (line != 0) - fprintf (stderr, "%s:%u: ", file, line); + fprintf (stderr, "%s:%u: %s %s\n", file, line, _("Warning: "), buffer); else - fprintf (stderr, "%s: ", file); + fprintf (stderr, "%s: %s %s\n", file, _("Warning: "), buffer); } - fprintf (stderr, _("Warning: ")); - fputs (buffer, stderr); - (void) putc ('\n', stderr); + else + fprintf (stderr, "%s %s\n", _("Warning: "), buffer); #ifndef NO_LISTING listing_warning (buffer); #endif @@ -217,13 +216,12 @@ as_bad_internal (char *file, unsigned int line, char *buffer) if (file) { if (line != 0) - fprintf (stderr, "%s:%u: ", file, line); + fprintf (stderr, "%s:%u: %s %s\n", file, line, _("Error:"), buffer); else - fprintf (stderr, "%s: ", file); + fprintf (stderr, "%s: %s %s\n", file, _("Error:"), buffer); } - fprintf (stderr, _("Error: ")); - fputs (buffer, stderr); - (void) putc ('\n', stderr); + else + fprintf (stderr, "%s %s\n", _("Error:"), buffer); #ifndef NO_LISTING listing_error (buffer); #endif