summaryrefslogtreecommitdiff
path: root/gdb/ser-unix.c
diff options
context:
space:
mode:
authorMichael Sokolov <msokolov@ivan.Harhan.ORG>2001-02-06 21:39:46 +0000
committerMichael Sokolov <msokolov@ivan.Harhan.ORG>2001-02-06 21:39:46 +0000
commit158dd15f070d4302a5bab61d4e16d0b7cb4a152a (patch)
tree6d79efc5f8a61cecd290c27b2fcd66ce42d52017 /gdb/ser-unix.c
parent5c35eb20cd8b90b864336d8049fe266f3fbee94a (diff)
downloadgdb-158dd15f070d4302a5bab61d4e16d0b7cb4a152a.tar.gz
* ser-unix.c (hardware_print_tty_state) [HAVE_SGTTY]: Call
fprintf_filtered with correct arguments.
Diffstat (limited to 'gdb/ser-unix.c')
-rw-r--r--gdb/ser-unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ser-unix.c b/gdb/ser-unix.c
index 381bf33d529..6f73f2c515c 100644
--- a/gdb/ser-unix.c
+++ b/gdb/ser-unix.c
@@ -267,7 +267,7 @@ hardwire_print_tty_state (serial_t scb,
fprintf_filtered (stream, "tchars: ");
for (i = 0; i < (int) sizeof (struct tchars); i++)
fprintf_filtered (stream, "0x%x ", ((unsigned char *) &state->tc)[i]);
- fprintf_filtered ("\n");
+ fprintf_filtered (stream, "\n");
fprintf_filtered (stream, "ltchars: ");
for (i = 0; i < (int) sizeof (struct ltchars); i++)