Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2010-04-06 19:09:44 +0400
committerChristopher Faylor <me@cgf.cx>2010-04-06 19:09:44 +0400
commit35297ebe0b13280a673cf1e1c3523b53b8869ce8 (patch)
tree14637c779f62dc875a54288ca4dfb42461a14f1d /winsup/cygwin/fhandler_fifo.cc
parent65ee447a029b37484a22272082fbdf876915c7ec (diff)
* fhandler_fifo.cc (fhandler_fifo::open): Accommodate previous return value
change to setup_overlapped.
Diffstat (limited to 'winsup/cygwin/fhandler_fifo.cc')
-rw-r--r--winsup/cygwin/fhandler_fifo.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_fifo.cc b/winsup/cygwin/fhandler_fifo.cc
index 92394dabf..746409c01 100644
--- a/winsup/cygwin/fhandler_fifo.cc
+++ b/winsup/cygwin/fhandler_fifo.cc
@@ -143,7 +143,7 @@ fhandler_fifo::open (int flags, mode_t)
__seterrno ();
res = 0;
}
- else if (!setup_overlapped ())
+ else if (setup_overlapped ())
{
CloseHandle (h);
__seterrno ();