diff options
author | Christopher Faylor <me@cgf.cx> | 2012-10-15 14:36:48 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2012-10-15 14:36:48 +0000 |
commit | 744f194868978d333c59c564737b364c8140b863 (patch) | |
tree | 7793ec8e2ea891dfef6b76236084b14528024dba /winsup/cygwin/fhandler_tty.cc | |
parent | 6832e38a83a62df800585ee0f0b6dff93e76ac03 (diff) | |
download | newlib-744f194868978d333c59c564737b364c8140b863.zip newlib-744f194868978d333c59c564737b364c8140b863.tar.gz newlib-744f194868978d333c59c564737b364c8140b863.tar.bz2 |
* fhandler_tty.cc (fhandler_pty_slave::write): DWORD -> BOOL.
Diffstat (limited to 'winsup/cygwin/fhandler_tty.cc')
-rw-r--r-- | winsup/cygwin/fhandler_tty.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index dccbf13..954fd66 100644 --- a/winsup/cygwin/fhandler_tty.cc +++ b/winsup/cygwin/fhandler_tty.cc @@ -666,7 +666,7 @@ fhandler_pty_slave::write (const void *ptr, size_t len) break; } - DWORD res = WriteFile (get_output_handle (), buf, n, &n, NULL); + BOOL res = WriteFile (get_output_handle (), buf, n, &n, NULL); release_output_mutex (); if (!res) { |