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
+ * 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
{
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:
break;
}
- putchar('\n');
-
va_end (args);
return LDPS_OK;
}