]> gcc.gnu.org Git - gcc.git/commitdiff
(mtherr): Don't put newlines in error message string.
authorRichard Stallman <rms@gnu.org>
Sun, 9 May 1993 22:17:27 +0000 (22:17 +0000)
committerRichard Stallman <rms@gnu.org>
Sun, 9 May 1993 22:17:27 +0000 (22:17 +0000)
From-SVN: r4403

gcc/real.c

index d3dd197261ae430006c8df8c6dc955cf735fb119..0fedcdfd63afe161efee1968993e13068546a493 100644 (file)
@@ -4683,7 +4683,7 @@ mtherr (name, code)
    */
   if ((code <= 0) || (code >= NMSGS))
     code = 0;
-  sprintf (errstr, "\n%s %s error\n", name, ermsg[code]);
+  sprintf (errstr, " %s %s error", name, ermsg[code]);
   if (extra_warnings)
     warning (errstr);
   /* Set global error message word */
This page took 0.064732 seconds and 5 git commands to generate.