Add a space after `:' in plugin error message.
authorH.J. Lu <hjl.tools@gmail.com>
Mon, 6 Dec 2010 02:28:31 +0000 (02:28 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Mon, 6 Dec 2010 02:28:31 +0000 (02:28 +0000)
2010-12-05  H.J. Lu  <hongjiu.lu@intel.com>

* plugin.c (message): Add a space after `:' in error message.

ld/ChangeLog
ld/plugin.c

index eeefd3361594b34168b6b95c36bdd49597d60d49..63858ee00fa25047f5ac1e349a1cf25eab17fcae 100644 (file)
@@ -1,3 +1,7 @@
+2010-12-05  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * plugin.c (message): Add a space after `:' in error message.
+
 2010-12-05  H.J. Lu  <hongjiu.lu@intel.com>
 
        * plugin.c (asymbol_from_plugin_symbol): Add the trailing `\n'
index 8c919b6c7109935219f7db6c5d1ad7cb1f171795..34d76bd84335a128f34f586e2bc6a69b02af5f1e 100644 (file)
@@ -587,7 +587,8 @@ message (int level, const char *format, ...)
     case LDPL_ERROR:
     default:
        {
-         char *newfmt = ACONCAT ((level == LDPL_FATAL ? "%P%F:" : "%P%X:",
+         char *newfmt = ACONCAT ((level == LDPL_FATAL
+                                  ? "%P%F: " : "%P%X: ",
                                   format, "\n", NULL));
          vfinfo (stderr, newfmt, args, TRUE);
        }
This page took 0.026454 seconds and 4 git commands to generate.