summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzv@archiware.com <vasiljevic>2004-07-15 09:50:11 (GMT)
committerzv@archiware.com <vasiljevic>2004-07-15 09:50:11 (GMT)
commitc84d65575c5a5bed2cac17c380f1519f0995d090 (patch)
tree339f0a72f5dbfc823ca73d64751bfc5eef051209
parentd363f54c8403a08ef0d5f85489fc866ce7c4fd6b (diff)
downloadtcl-c84d65575c5a5bed2cac17c380f1519f0995d090.zip
tcl-c84d65575c5a5bed2cac17c380f1519f0995d090.tar.gz
tcl-c84d65575c5a5bed2cac17c380f1519f0995d090.tar.bz2
Removed unused variable in NewThreadProc()
-rw-r--r--generic/tclEvent.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c
index 7ce54ef..9850fe6 100644
--- a/generic/tclEvent.c
+++ b/generic/tclEvent.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclEvent.c,v 1.40 2004/07/15 09:44:46 vasiljevic Exp $
+ * RCS: @(#) $Id: tclEvent.c,v 1.41 2004/07/15 09:50:11 vasiljevic Exp $
*/
#include "tclInt.h"
@@ -1252,7 +1252,8 @@ NewThreadProc(ClientData clientData)
ThreadClientData *cdPtr;
ClientData threadClientData;
Tcl_ThreadCreateProc *threadProc;
- ThreadSpecificData *tsdPtr = TCL_TSD_INIT(&dataKey);
+
+ (void) TCL_TSD_INIT(&dataKey);
cdPtr = (ThreadClientData *)clientData;
threadProc = cdPtr->proc;