diff options
author | nijtmans <nijtmans> | 2010-05-11 14:47:12 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-05-11 14:47:12 (GMT) |
commit | de40abc6da2cdfe574bf281fbaf84fa03a7f619d (patch) | |
tree | b910b870b64085996a0a4be0be3eb7bcd33ad0c4 /win/tclWinLoad.c | |
parent | 4d121f611d686f514965d65ee8fc91fb882824e3 (diff) | |
download | tcl-de40abc6da2cdfe574bf281fbaf84fa03a7f619d.zip tcl-de40abc6da2cdfe574bf281fbaf84fa03a7f619d.tar.gz tcl-de40abc6da2cdfe574bf281fbaf84fa03a7f619d.tar.bz2 |
Unnecessary type casts, See Tcl [Patch #2997087]
Don't duplicate CYGWIN timezone #define from tclPort.h in tclWinPort.h
Diffstat (limited to 'win/tclWinLoad.c')
-rw-r--r-- | win/tclWinLoad.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinLoad.c b/win/tclWinLoad.c index 3eb0134..b5924e6 100644 --- a/win/tclWinLoad.c +++ b/win/tclWinLoad.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinLoad.c,v 1.29 2010/04/22 11:40:32 nijtmans Exp $ + * RCS: @(#) $Id: tclWinLoad.c,v 1.30 2010/05/11 14:47:12 nijtmans Exp $ */ #include "tclWinInt.h" @@ -153,7 +153,7 @@ TclpDlopen( handlePtr->clientData = (ClientData) hInstance; handlePtr->findSymbolProcPtr = &FindSymbol; handlePtr->unloadFileProcPtr = &UnloadFile; - *loadHandle = (Tcl_LoadHandle) handlePtr; + *loadHandle = handlePtr; *unloadProcPtr = &UnloadFile; } return TCL_OK; |