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 b019db046..a8a56598e 100644 --- a/winsup/cygwin/fhandler_tty.cc +++ b/winsup/cygwin/fhandler_tty.cc @@ -1624,8 +1624,8 @@ fhandler_pty_master::setup () char pipename[sizeof("ptyNNNN-from-master")]; __small_sprintf (pipename, "pty%d-to-master", unit); - res = fhandler_pipe::create_selectable (&sec_none, get_io_handle (), - to_master, 128 * 1024, pipename); + res = fhandler_pipe::create_selectable (&sec_none, &get_io_handle (), + &to_master, 128 * 1024, pipename, 0); if (res) { errstr = "output pipe"; |