diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-03-04 16:18:04 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-03-04 16:18:04 (GMT) |
| commit | d9f1c65e5bac2214e8f96cf6a2c0119038a4b0b8 (patch) | |
| tree | fcf2f3ffecb2f824b341180c2f688dc602af01e7 | |
| parent | cf1d1dfbd9135e8c0afcdb8a1eca560d28ccfc12 (diff) | |
| parent | 9d172afc1bdfe94c2c66377b03fe8590ec83897b (diff) | |
| download | tcl-d9f1c65e5bac2214e8f96cf6a2c0119038a4b0b8.zip tcl-d9f1c65e5bac2214e8f96cf6a2c0119038a4b0b8.tar.gz tcl-d9f1c65e5bac2214e8f96cf6a2c0119038a4b0b8.tar.bz2 | |
Merge 8.7
| -rw-r--r-- | win/tclWinLoad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinLoad.c b/win/tclWinLoad.c index 38eae99..238af65 100644 --- a/win/tclWinLoad.c +++ b/win/tclWinLoad.c @@ -219,7 +219,7 @@ FindSymbol( Tcl_DStringInit(&ds); TclDStringAppendLiteral(&ds, "_"); sym2 = Tcl_DStringAppend(&ds, symbol, -1); - proc = (Tcl_PackageInitProc *)(void *)GetProcAddress(hInstance, sym2); + proc = (void *)GetProcAddress(hInstance, sym2); Tcl_DStringFree(&ds); } if (proc == NULL && interp != NULL) { |
