Removed useless 'true &&' statement

Cherry-picked from: 6965c8b9dac4bb0383a520a829b6689ea597764f

Signed-off-by: Luke Dashjr <luke-jr+git@utopios.org>
pull/29/head
Tobias Koenig 17 years ago committed by Michele Calgaro
parent 20c686e489
commit 5aa4ac948f
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -147,7 +147,7 @@ sigchld_handler (int signo)
{
int pid, status;
while (true && signo == SIGCHLD)
while (signo == SIGCHLD)
{
pid = waitpid (-1, &status, WNOHANG);
if (pid <= 0)

Loading…
Cancel
Save