Boost logo

Boost-Commit :

From: markus.schoepflin_at_[hidden]
Date: 2007-09-24 03:31:46


Author: schoepflin
Date: 2007-09-24 03:31:43 EDT (Mon, 24 Sep 2007)
New Revision: 39498
URL: http://svn.boost.org/trac/boost/changeset/39498

Log:
Removed unused variable.
Text files modified:
   trunk/tools/jam/src/execunix.c | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/tools/jam/src/execunix.c
==============================================================================
--- trunk/tools/jam/src/execunix.c (original)
+++ trunk/tools/jam/src/execunix.c 2007-09-24 03:31:43 EDT (Mon, 24 Sep 2007)
@@ -394,7 +394,7 @@
 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 @@
 
                         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;


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk