summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2002-07-18 15:14:35 (GMT)
committervincentdarley <vincentdarley>2002-07-18 15:14:35 (GMT)
commitac016ab108f10eb41a68b7d6b086143b2f8241b0 (patch)
tree307f8ded457e5cc4888bfac0081acea60170f485 /generic
parent20b4ff09da18675ea2feab59089754f481ec34ee (diff)
downloadtcl-ac016ab108f10eb41a68b7d6b086143b2f8241b0.zip
tcl-ac016ab108f10eb41a68b7d6b086143b2f8241b0.tar.gz
tcl-ac016ab108f10eb41a68b7d6b086143b2f8241b0.tar.bz2
load comments and clientData replacement
Diffstat (limited to 'generic')
-rw-r--r--generic/tclIOUtil.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c
index c14fd1f..5465dcc 100644
--- a/generic/tclIOUtil.c
+++ b/generic/tclIOUtil.c
@@ -17,7 +17,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclIOUtil.c,v 1.57 2002/07/18 15:13:26 vincentdarley Exp $
+ * RCS: @(#) $Id: tclIOUtil.c,v 1.58 2002/07/18 15:14:35 vincentdarley Exp $
*/
#include "tclInt.h"
@@ -2563,7 +2563,8 @@ Tcl_FSLoadFile(interp, pathPtr, sym1, sym2, proc1Ptr, proc2Ptr,
int retVal;
retVal = Tcl_FSLoadFile(interp, copyToPtr, sym1, sym2,
- proc1Ptr, proc2Ptr, &newLoadHandle,
+ proc1Ptr, proc2Ptr,
+ (ClientData*)&newLoadHandle,
&newUnloadProcPtr);
if (retVal != TCL_OK) {
/* The file didn't load successfully */
@@ -2710,7 +2711,7 @@ FSUnloadTempFile(loadHandle)
* use.
*/
if (tvdlPtr->unloadProcPtr != NULL) {
- (*tvdlPtr->unloadProcPtr)(tvdlPtr->clientData);
+ (*tvdlPtr->unloadProcPtr)(tvdlPtr->loadHandle);
}
/* Remove the temporary file we created. */