Remove left coercion throughout.

This commit is contained in:
Christopher Faylor
2003-09-07 02:22:58 +00:00
parent 46645f9c6e
commit 6cce721b15
8 changed files with 19 additions and 15 deletions

View File

@ -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;