diff options
author | vasiljevic <zv@archiware.com> | 2006-03-10 17:31:29 (GMT) |
---|---|---|
committer | vasiljevic <zv@archiware.com> | 2006-03-10 17:31:29 (GMT) |
commit | 53b45b4e76b72fa4d5eb0a808008c49ef2d148b3 (patch) | |
tree | 8ad5470a093dde91400297b20c5c0db6318321dd /generic | |
parent | caf26a9afdc9ca29fdd6a06099bf821f7c0382f3 (diff) | |
download | tcl-53b45b4e76b72fa4d5eb0a808008c49ef2d148b3.zip tcl-53b45b4e76b72fa4d5eb0a808008c49ef2d148b3.tar.gz tcl-53b45b4e76b72fa4d5eb0a808008c49ef2d148b3.tar.bz2 |
Cosmetic touch.
Diffstat (limited to 'generic')
-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; |