diff options
author | jan.nijtmans <jan.nijtmans@noemail.net> | 2017-05-04 09:35:14 (GMT) |
---|---|---|
committer | jan.nijtmans <jan.nijtmans@noemail.net> | 2017-05-04 09:35:14 (GMT) |
commit | 8bab835783009bcb35a48f3aae19928d8d4b07c2 (patch) | |
tree | a83fb67836161e41f6aa8d436c0318ab48c12846 | |
parent | 3c2e9e0fb3a2ed76b767d54fb4ef9988d762fa28 (diff) | |
download | tcl-8bab835783009bcb35a48f3aae19928d8d4b07c2.zip tcl-8bab835783009bcb35a48f3aae19928d8d4b07c2.tar.gz tcl-8bab835783009bcb35a48f3aae19928d8d4b07c2.tar.bz2 |
Fix gcc warning: unused variable wakeEvent
FossilOrigin-Name: 1dc66e966b412033c67898cce05ea6d77ceeb859
-rw-r--r-- | win/tclWinPipe.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/win/tclWinPipe.c b/win/tclWinPipe.c index 3e7e5eb..5246d53 100644 --- a/win/tclWinPipe.c +++ b/win/tclWinPipe.c @@ -3253,7 +3253,7 @@ TclPipeThreadStop( HANDLE hThread) { TclPipeThreadInfo *pipeTI = *pipeTIPtr; - HANDLE evControl, wakeEvent; + HANDLE evControl; int state; if (!pipeTI) { @@ -3261,7 +3261,6 @@ TclPipeThreadStop( } pipeTI = *pipeTIPtr; evControl = pipeTI->evControl; - wakeEvent = pipeTI->evWakeUp; pipeTI->evWakeUp = NULL; /* * Try to sane stop the pipe worker, corresponding its current state |