diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2010-12-06 20:25:49 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2010-12-06 20:25:49 +0000 |
commit | d9b214634821128048e319c8d24c4640dab19dd2 (patch) | |
tree | cb99cb7edfae079ccf70f15d2209aa9ed53c6d7c /bfd/plugin.c | |
parent | 8e0e408ae67929c13582e95db3f037627b83947f (diff) | |
download | gdb-d9b214634821128048e319c8d24c4640dab19dd2.zip gdb-d9b214634821128048e319c8d24c4640dab19dd2.tar.gz gdb-d9b214634821128048e319c8d24c4640dab19dd2.tar.bz2 |
Use putchar for the trailing `\n' in plugin message.
bfd/
2010-12-06 Dmitry Gorbachev <d.g.gorbachev@gmail.com>
PR ld/12288
* plugin.c (message): Add putchar for the trailing `\n'.
ld/
2010-12-06 Dmitry Gorbachev <d.g.gorbachev@gmail.com>
PR ld/12288
* plugin.c (message): Use putchar for the trailing `\n'.
Diffstat (limited to 'bfd/plugin.c')
-rw-r--r-- | bfd/plugin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bfd/plugin.c b/bfd/plugin.c index a46bf90..61cd687 100644 --- a/bfd/plugin.c +++ b/bfd/plugin.c @@ -78,6 +78,7 @@ message (int level ATTRIBUTE_UNUSED, va_start (args, format); printf ("bfd plugin: "); vprintf (format, args); + putchar ('\n'); va_end (args); return LDPS_OK; } |