diff options
Diffstat (limited to 'winsup/cygwin/sigproc.cc')
-rw-r--r-- | winsup/cygwin/sigproc.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc index 34e4c53a4..e21e09feb 100644 --- a/winsup/cygwin/sigproc.cc +++ b/winsup/cygwin/sigproc.cc @@ -1045,13 +1045,13 @@ stopped_or_terminated (waitq *parent_w, _pinfo *child) might_match = (w->pid == child->pid); if (!might_match) - return 0; + return false; int terminated; if (!((terminated = (child->process_state == PID_EXITED)) || ((w->options & WUNTRACED) && child->stopsig))) - return 0; + return false; parent_w->next = w->next; /* successful wait. remove from wait queue */ w->pid = child->pid; |