diff options
author | Mark Kettenis <kettenis@gnu.org> | 2002-11-03 13:04:47 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2002-11-03 13:04:47 +0000 |
commit | f16a25aee972c2315a3e61ffd97033a2019ce674 (patch) | |
tree | 6d76fadf19258fc57dcd367112d4e4fbfeff3e32 /gdb/i387-tdep.c | |
parent | 1d70089aecbf9b18b944bd61707db3c541e2d429 (diff) | |
download | gdb-f16a25aee972c2315a3e61ffd97033a2019ce674.zip gdb-f16a25aee972c2315a3e61ffd97033a2019ce674.tar.gz gdb-f16a25aee972c2315a3e61ffd97033a2019ce674.tar.bz2 |
* i387-tdep.c (i387_print_float_info): Call fputs_filtered instead
of puts_filtered.
Diffstat (limited to 'gdb/i387-tdep.c')
-rw-r--r-- | gdb/i387-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/i387-tdep.c b/gdb/i387-tdep.c index e465690..f2ed6b8 100644 --- a/gdb/i387-tdep.c +++ b/gdb/i387-tdep.c @@ -388,7 +388,7 @@ i387_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, fputs_filtered ("\n", file); } - puts_filtered ("\n"); + fputs_filtered ("\n", file); print_i387_status_word (fstat, file); print_i387_control_word (fctrl, file); |