diff options
author | Brad King <brad.king@kitware.com> | 2003-06-11 13:44:48 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-06-11 13:44:48 (GMT) |
commit | bd2590ddb5a4f1b495b007ba33c8b9a05b50c751 (patch) | |
tree | a6e4611947d3ecc904cdb9aae1aefad7e87aafe9 | |
parent | 2db5cc8c31cf281d9f106433fbfe3060d97fa664 (diff) | |
download | CMake-bd2590ddb5a4f1b495b007ba33c8b9a05b50c751.zip CMake-bd2590ddb5a4f1b495b007ba33c8b9a05b50c751.tar.gz CMake-bd2590ddb5a4f1b495b007ba33c8b9a05b50c751.tar.bz2 |
ERR: Removed unused variables.
-rw-r--r-- | Source/kwsys/ProcessWin32.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/kwsys/ProcessWin32.c b/Source/kwsys/ProcessWin32.c index 3b7c377..ecb703a 100644 --- a/Source/kwsys/ProcessWin32.c +++ b/Source/kwsys/ProcessWin32.c @@ -609,7 +609,6 @@ void kwsysProcess_Execute(kwsysProcess* cp) for(i=0; i < cp->PipeCount; ++i) { HANDLE writeEnd; - DWORD dummy=0; /* The pipe is not closed. */ cp->Pipe[i].Closed = 0; @@ -884,7 +883,6 @@ int kwsysProcess_WaitForExit(kwsysProcess* cp, double* userTimeout) { int i; int pipe = 0; - int pipesLeft = cp->PipeCount; /* Buffer for child's return value. */ int childReturnValue = 0; |