* sigproc.cc (wait_sig): Add braces to avoid confusion.

This commit is contained in:
Christopher Faylor
2000-10-27 15:38:32 +00:00
parent afd5033d83
commit 018a91fa2e
3 changed files with 11 additions and 5 deletions

View File

@ -1121,10 +1121,12 @@ wait_sig (VOID *)
* this thread should terminate.
*/
if (rc == WAIT_TIMEOUT)
if (!sig_loop_wait)
break; // Exiting
else
continue;
{
if (!sig_loop_wait)
break; // Exiting
else
continue;
}
if (rc == WAIT_FAILED)
{