]> sourceware.org Git - newlib-cygwin.git/commitdiff
* fhandler_tty.cc (fhandler_pty_slave::write): DWORD -> BOOL.
authorChristopher Faylor <me@cgf.cx>
Mon, 15 Oct 2012 14:36:48 +0000 (14:36 +0000)
committerChristopher Faylor <me@cgf.cx>
Mon, 15 Oct 2012 14:36:48 +0000 (14:36 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/fhandler_tty.cc

index a745d7285fff3db4cdae49904d0e97a61967653e..e05af490bd5f8944b05b09dd60d71079d5fb7b29 100644 (file)
@@ -1,3 +1,7 @@
+2012-10-15  Christopher Faylor  <me.cygwin2012@cgf.cx>
+
+       * fhandler_tty.cc (fhandler_pty_slave::write): DWORD -> BOOL.
+
 2012-10-13  Corinna Vinschen  <corinna@vinschen.de>
 
        * fhandler.h (class fhandler_dev_raw): Add members devbufalloc and
index dccbf13ea237b1b9f8596721c703273dd2543ad5..954fd66220326057f1afa0f413915f687908dc3c 100644 (file)
@@ -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)
        {
This page took 0.036286 seconds and 5 git commands to generate.