diff options
| author | zv@archiware.com <vasiljevic> | 2006-03-10 17:31:29 (GMT) |
|---|---|---|
| committer | zv@archiware.com <vasiljevic> | 2006-03-10 17:31:29 (GMT) |
| commit | 3eb46eff2e1d4bbfe4c20b3de65336436de395a4 (patch) | |
| tree | 8ad5470a093dde91400297b20c5c0db6318321dd | |
| parent | 27bdedc5dade1cc06e430fee6acee5952fad8eb6 (diff) | |
| download | tcl-3eb46eff2e1d4bbfe4c20b3de65336436de395a4.zip tcl-3eb46eff2e1d4bbfe4c20b3de65336436de395a4.tar.gz tcl-3eb46eff2e1d4bbfe4c20b3de65336436de395a4.tar.bz2 | |
Cosmetic touch.
| -rw-r--r-- | generic/tclEvent.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c index c36d875..4541309 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.65 2005/11/01 15:30:52 dkf Exp $ + * RCS: @(#) $Id: tclEvent.c,v 1.66 2006/03/10 17:31:29 vasiljevic Exp $ */ #include "tclInt.h" @@ -1015,6 +1015,7 @@ void Tcl_FinalizeThread(void) { ExitHandler *exitPtr; + ThreadSpecificData *tsdPtr; /* * We use TclThreadDataKeyGet here, rather than Tcl_GetThreadData, because @@ -1022,9 +1023,7 @@ Tcl_FinalizeThread(void) * initialized already. */ - ThreadSpecificData *tsdPtr = (ThreadSpecificData *) - TclThreadDataKeyGet(&dataKey); - + tsdPtr = (ThreadSpecificData *)TclThreadDataKeyGet(&dataKey); if (tsdPtr != NULL) { tsdPtr->inExit = 1; |
