diff options
author | dgp <dgp@users.sourceforge.net> | 2002-01-07 23:09:12 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-01-07 23:09:12 (GMT) |
commit | 64d75f9d23874c04fa77962208a6ccbf0bcf8c0e (patch) | |
tree | f6b88c79ec9608bd9cca42734203651d6c7b71b1 /generic/tclEvent.c | |
parent | 84fa1e6dcfd96c948d28631c761fae53e8683af4 (diff) | |
download | tcl-64d75f9d23874c04fa77962208a6ccbf0bcf8c0e.zip tcl-64d75f9d23874c04fa77962208a6ccbf0bcf8c0e.tar.gz tcl-64d75f9d23874c04fa77962208a6ccbf0bcf8c0e.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 { |