From 895e4b091aaf8b4ac648d187fd8abc155bb7715f Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Mon, 6 Dec 2010 21:47:43 +0000 Subject: Don't add the trailing `\n' for LDPL_ERROR. 2010-12-06 H.J. Lu PR ld/12288 * plugin.c (message): Don't add the trailing `\n' for LDPL_ERROR. --- ld/plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ld/plugin.c') diff --git a/ld/plugin.c b/ld/plugin.c index db31596cce..e4943c2bdd 100644 --- a/ld/plugin.c +++ b/ld/plugin.c @@ -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; } -- cgit v1.2.1