OSDN Git Service

Don't add the trailing `\n' for LDPL_ERROR.
authorhjl <hjl>
Tue, 7 Dec 2010 06:47:43 +0000 (06:47 +0000)
committerhjl <hjl>
Tue, 7 Dec 2010 06:47:43 +0000 (06:47 +0000)
2010-12-06  H.J. Lu  <hongjiu.lu@intel.com>

PR ld/12288
* plugin.c (message): Don't add the trailing `\n' for
LDPL_ERROR.

ld/ChangeLog
ld/plugin.c

index 19f4c62..16a134a 100644 (file)
@@ -1,6 +1,12 @@
 2010-12-06  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR ld/12288
+       * plugin.c (message): Don't add the trailing `\n' for
+       LDPL_ERROR.
+
+2010-12-06  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/12288
        * testplug.c: Remove the trailing `\n' from TV_MESSAGE.
 
 2010-12-06  Dmitry Gorbachev  <d.g.gorbachev@gmail.com>
index db31596..e4943c2 100644 (file)
@@ -582,9 +582,11 @@ message (int level, const char *format, ...)
     {
     case LDPL_INFO:
       vfinfo (stdout, format, args, FALSE);
+      putchar ('\n');
       break;
     case LDPL_WARNING:
       vfinfo (stdout, format, args, TRUE);
+      putchar ('\n');
       break;
     case LDPL_FATAL:
     case LDPL_ERROR:
@@ -598,8 +600,6 @@ message (int level, const char *format, ...)
       break;
     }
 
-  putchar('\n');
-
   va_end (args);
   return LDPS_OK;
 }