summaryrefslogtreecommitdiff
path: root/winsup/cygwin/pipe.cc
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/pipe.cc')
-rw-r--r--winsup/cygwin/pipe.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/pipe.cc b/winsup/cygwin/pipe.cc
index a1e99b27e25..242556ad6c4 100644
--- a/winsup/cygwin/pipe.cc
+++ b/winsup/cygwin/pipe.cc
@@ -76,7 +76,7 @@ fhandler_pipe::read (void *in_ptr, size_t& in_len)
ResetEvent (read_state);
cygthread *th = new cygthread (read_pipe, &pi, "read_pipe");
if (th->detach (read_state) && !in_len)
- (ssize_t) in_len = -1; /* received a signal */
+ in_len = (size_t) -1; /* received a signal */
}
(void) ReleaseMutex (guard);
return;