* ser-unix.c (hardware_print_tty_state) [HAVE_SGTTY]: Call
fprintf_filtered with correct arguments.
This commit is contained in:
parent
e6cbd02ac2
commit
64122a8ba7
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-02-06 Michael Sokolov <msokolov@ivan.Harhan.ORG>
|
||||
|
||||
* ser-unix.c (hardware_print_tty_state) [HAVE_SGTTY]: Call
|
||||
fprintf_filtered with correct arguments.
|
||||
|
||||
2001-02-06 Michael Snyder <msnyder@makita.cygnus.com>
|
||||
Submitted by Paul Hilfinger (hilfingr@gnat.com)
|
||||
and Andrei Petrov (and@genesyslab.com).
|
||||
|
|
|
@ -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++)
|
||||
|
|
Loading…
Reference in a new issue