From: H.J. Lu Date: Mon, 6 Dec 2010 02:28:31 +0000 (+0000) Subject: Add a space after `:' in plugin error message. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7990daecfc90f458631df31ffc4d56b42957e32f;p=binutils-gdb.git Add a space after `:' in plugin error message. 2010-12-05 H.J. Lu * plugin.c (message): Add a space after `:' in error message. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index eeefd336159..63858ee00fa 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2010-12-05 H.J. Lu + + * plugin.c (message): Add a space after `:' in error message. + 2010-12-05 H.J. Lu * plugin.c (asymbol_from_plugin_symbol): Add the trailing `\n' diff --git a/ld/plugin.c b/ld/plugin.c index 8c919b6c710..34d76bd8433 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); }