From bb6a78bebe3cc903d01840c4fb4c3a633bbf9b38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Sch=C3=B6pflin?= Date: Mon, 24 Sep 2007 07:31:43 +0000 Subject: [PATCH] Removed unused variable. [SVN r39498] --- historic/jam/src/execunix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/historic/jam/src/execunix.c b/historic/jam/src/execunix.c index 754895b4c..bb71dc618 100644 --- a/historic/jam/src/execunix.c +++ b/historic/jam/src/execunix.c @@ -394,7 +394,7 @@ int execwait() { int i, ret, fd_max; - int pid, status, w, finished; + int pid, status, finished; int rstat; timing_info time; fd_set fds; @@ -480,7 +480,7 @@ execwait() if( intr ) rstat = EXEC_CMD_INTR; - else if( w == -1 || status != 0 ) + else if( status != 0 ) rstat = EXEC_CMD_FAIL; else rstat = EXEC_CMD_OK;