diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-01-11 21:34:29 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-01-11 21:34:29 +0000 |
commit | daefa85476891e8ff6a7a2c26132e2321fbbe69d (patch) | |
tree | 87d41f177fedc73edb6b64ea87fc5849062d691e /gdb/macrocmd.c | |
parent | 464e3686c0c5f247bede4481887654a714ce4c8f (diff) | |
download | gdb-daefa85476891e8ff6a7a2c26132e2321fbbe69d.zip gdb-daefa85476891e8ff6a7a2c26132e2321fbbe69d.tar.gz gdb-daefa85476891e8ff6a7a2c26132e2321fbbe69d.tar.bz2 |
gdb/
* macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
fputs_filtered. Append trailing newline.
Diffstat (limited to 'gdb/macrocmd.c')
-rw-r--r-- | gdb/macrocmd.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/macrocmd.c b/gdb/macrocmd.c index e2967e7..9e4b083 100644 --- a/gdb/macrocmd.c +++ b/gdb/macrocmd.c @@ -49,9 +49,7 @@ macro_command (char *arg, int from_tty) /* Prints an informational message regarding the lack of macro information. */ static void macro_inform_no_debuginfo() { - fputs_filtered ("GDB has no preprocessor macro information for " - "that code.", - gdb_stdout); + puts_filtered ("GDB has no preprocessor macro information for that code.\n"); } static void |