Add the trailing `\n' to pluin message.
authorH.J. Lu <hjl.tools@gmail.com>
Mon, 6 Dec 2010 00:49:00 +0000 (00:49 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Mon, 6 Dec 2010 00:49:00 +0000 (00:49 +0000)
2010-12-05  H.J. Lu  <hongjiu.lu@intel.com>

PR ld/12288
* plugin.c (message): Add the trailing `\n'.

ld/ChangeLog
ld/plugin.c

index bb7b5a6a78536829fec369c363d0bf5e1db8a948..4aed58ca46951ca666079728750317e7352ab137 100644 (file)
@@ -1,3 +1,8 @@
+2010-12-05  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/12288
+       * plugin.c (message): Add the trailing `\n'.
+
 2010-12-05  H.J. Lu  <hongjiu.lu@intel.com>
 
        * ldfile.c (ldfile_open_file_search): Check maybe_archive instead
index ae9c378c1a95f39f27c761bb659c56721a83daef..420fcee16f7542b7229d83a8000d755602702af3 100644 (file)
@@ -588,12 +588,14 @@ message (int level, const char *format, ...)
     default:
        {
          char *newfmt = ACONCAT ((level == LDPL_FATAL ? "%F" : "%X",
-                                  format, NULL));
+                                  format, "\n", NULL));
          vfinfo (stderr, newfmt, args, TRUE);
        }
       break;
     }
 
+  fputc('\n', stderr);
+
   va_end (args);
   return LDPS_OK;
 }