diff options
| author | dgp@users.sourceforge.net <dgp> | 2002-01-07 23:09:12 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2002-01-07 23:09:12 (GMT) |
| commit | b7e6ea79ad90d9ac83c1b64e1e93f4a43348dc9b (patch) | |
| tree | f6b88c79ec9608bd9cca42734203651d6c7b71b1 /generic/tclEvent.c | |
| parent | 29ff9b06e837f4fb0df105402e0c9df594ad6b55 (diff) | |
| download | tcl-b7e6ea79ad90d9ac83c1b64e1e93f4a43348dc9b.zip tcl-b7e6ea79ad90d9ac83c1b64e1e93f4a43348dc9b.tar.gz tcl-b7e6ea79ad90d9ac83c1b64e1e93f4a43348dc9b.tar.bz2 | |
* generic/tclEvent.c (TclInExit):
* generic/tclIOUtil.c (SetFsPathFromAbsoluteNormalized,
SetFsPathFromAny,Tcl_FSNewNativePath,DupFsPathInternalRep):
* generic/tclListObj.c (TclLsetList,TclLsetFlat): Added some type
casts to satisfy picky compilers.
Diffstat (limited to 'generic/tclEvent.c')
| -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 52d461f..da526c4 100644 --- a/generic/tclEvent.c +++ b/generic/tclEvent.c @@ -11,7 +11,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.16 2001/12/10 20:30:13 msofer Exp $ + * RCS: @(#) $Id: tclEvent.c,v 1.17 2002/01/07 23:09:13 dgp Exp $ */ #include "tclInt.h" @@ -938,7 +938,8 @@ Tcl_FinalizeThread() int TclInExit() { - ThreadSpecificData *tsdPtr = TclThreadDataKeyGet(&dataKey); + ThreadSpecificData *tsdPtr = (ThreadSpecificData *) + TclThreadDataKeyGet(&dataKey); if (tsdPtr == NULL) { return inFinalize; } else { |
