diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2010-12-06 00:49:00 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2010-12-06 00:49:00 +0000 |
commit | b7f42144490ffbd08c09c4d684ed6a332ff4daf5 (patch) | |
tree | 1552905deb38bd60318bf4c85c6c74dacf1befd5 | |
parent | b7f95647fd61692f386a504b17a32326259d54cf (diff) | |
download | gdb-b7f42144490ffbd08c09c4d684ed6a332ff4daf5.zip gdb-b7f42144490ffbd08c09c4d684ed6a332ff4daf5.tar.gz gdb-b7f42144490ffbd08c09c4d684ed6a332ff4daf5.tar.bz2 |
Add the trailing `\n' to pluin message.
2010-12-05 H.J. Lu <hongjiu.lu@intel.com>
PR ld/12288
* plugin.c (message): Add the trailing `\n'.
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/plugin.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index bb7b5a6..4aed58c 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,10 @@ 2010-12-05 H.J. Lu <hongjiu.lu@intel.com> + PR ld/12288 + * plugin.c (message): Add the trailing `\n'. + +2010-12-05 H.J. Lu <hongjiu.lu@intel.com> + * ldfile.c (ldfile_open_file_search): Check maybe_archive instead of is_archive. * emultempl/aix.em: Likewise. diff --git a/ld/plugin.c b/ld/plugin.c index ae9c378..420fcee 100644 --- a/ld/plugin.c +++ b/ld/plugin.c @@ -588,12 +588,14 @@ message (int level, const char *format, ...) default: { char *newfmt = ACONCAT ((level == LDPL_FATAL ? "%F" : "%X", - format, NULL)); + format, "\n", NULL)); vfinfo (stderr, newfmt, args, TRUE); } break; } + fputc('\n', stderr); + va_end (args); return LDPS_OK; } |