summaryrefslogtreecommitdiff
path: root/ld/plugin.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2010-12-06 02:28:31 +0000
committerH.J. Lu <hjl.tools@gmail.com>2010-12-06 02:28:31 +0000
commitbb110705056c0826628d276ad67b8569665a2171 (patch)
tree4097933c60240a816a153ee907417e520048c76e /ld/plugin.c
parent2c03a9a741a9e9429c6a9b2b7415875c91e4ed98 (diff)
downloadbinutils-redhat-bb110705056c0826628d276ad67b8569665a2171.tar.gz
Add a space after `:' in plugin error message.
2010-12-05 H.J. Lu <hongjiu.lu@intel.com> * plugin.c (message): Add a space after `:' in error message.
Diffstat (limited to 'ld/plugin.c')
-rw-r--r--ld/plugin.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ld/plugin.c b/ld/plugin.c
index 8c919b6c71..34d76bd843 100644
--- a/ld/plugin.c
+++ b/ld/plugin.c
@@ -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);
}