From 6fb812f747e0613a1a33436d34c0db4752ea5f70 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Wed, 9 Jun 2004 21:43:28 +0000 Subject: [PATCH] Removed some excessive parens. --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 0aeb29c0..c6a3165a 100644 --- a/main.c +++ b/main.c @@ -84,7 +84,7 @@ void wait_process(pid_t pid, int *status) io_flush(FULL_FLUSH); } - if ((waited_pid == -1) && (errno == ECHILD)) { + if (waited_pid == -1 && errno == ECHILD) { /* status of requested child no longer available. * check to see if it was processed by the sigchld_handler. */ -- 2.34.1