diff options
Diffstat (limited to 'winsup/cygwin/fhandler_tty.cc')
-rw-r--r-- | winsup/cygwin/fhandler_tty.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index 4b0538f..6b7ad80 100644 --- a/winsup/cygwin/fhandler_tty.cc +++ b/winsup/cygwin/fhandler_tty.cc @@ -1033,7 +1033,7 @@ fhandler_pty_slave::ioctl (unsigned int cmd, void *arg) } out: - termios_printf ("%d = ioctl (%x)", retval, cmd); + termios_printf ("%d = ioctl(%x)", retval, cmd); return retval; } @@ -1679,7 +1679,7 @@ fhandler_pty_master::setup () errstr = "pty master control pipe"; goto err; } - master_thread = new cygthread (::pty_master_thread, this, "pty_master"); + master_thread = new cygthread (::pty_master_thread, this, "ptym"); if (!master_thread) { errstr = "pty master control thread"; |