diff options
| author | zv@archiware.com <vasiljevic> | 2004-07-15 09:50:11 (GMT) |
|---|---|---|
| committer | zv@archiware.com <vasiljevic> | 2004-07-15 09:50:11 (GMT) |
| commit | c84d65575c5a5bed2cac17c380f1519f0995d090 (patch) | |
| tree | 339f0a72f5dbfc823ca73d64751bfc5eef051209 | |
| parent | d363f54c8403a08ef0d5f85489fc866ce7c4fd6b (diff) | |
| download | tcl-c84d65575c5a5bed2cac17c380f1519f0995d090.zip tcl-c84d65575c5a5bed2cac17c380f1519f0995d090.tar.gz tcl-c84d65575c5a5bed2cac17c380f1519f0995d090.tar.bz2 | |
Removed unused variable in NewThreadProc()
| -rw-r--r-- | generic/tclEvent.c | 5 |
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; |
