summaryrefslogtreecommitdiffstats
path: root/generic/tclIOUtil.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclIOUtil.c')
-rw-r--r--generic/tclIOUtil.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c
index ac02ecb..7655f2e 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.27 2002/01/03 21:52:15 dgp Exp $
+ * RCS: @(#) $Id: tclIOUtil.c,v 1.28 2002/01/07 23:09:13 dgp Exp $
*/
#include "tclInt.h"
@@ -3405,7 +3405,7 @@ SetFsPathFromAbsoluteNormalized(interp, objPtr)
fsPathPtr->fsRecPtr = NULL;
fsPathPtr->filesystemEpoch = -1;
- objPtr->internalRep.otherValuePtr = fsPathPtr;
+ objPtr->internalRep.otherValuePtr = (VOID *) fsPathPtr;
objPtr->typePtr = &tclFsPathType;
return TCL_OK;
@@ -3564,7 +3564,7 @@ SetFsPathFromAny(interp, objPtr)
fsPathPtr->fsRecPtr = NULL;
fsPathPtr->filesystemEpoch = -1;
- objPtr->internalRep.otherValuePtr = fsPathPtr;
+ objPtr->internalRep.otherValuePtr = (VOID *) fsPathPtr;
objPtr->typePtr = &tclFsPathType;
return TCL_OK;
@@ -3642,7 +3642,7 @@ Tcl_FSNewNativePath(fromFilesystem, clientData)
fsPathPtr->fsRecPtr = fsFromPtr->fsRecPtr;
fsPathPtr->filesystemEpoch = fsFromPtr->filesystemEpoch;
- objPtr->internalRep.otherValuePtr = fsPathPtr;
+ objPtr->internalRep.otherValuePtr = (VOID *) fsPathPtr;
objPtr->typePtr = &tclFsPathType;
return objPtr;
}
@@ -3697,7 +3697,7 @@ DupFsPathInternalRep(srcPtr, copyPtr)
(FsPath*) ckalloc((unsigned)sizeof(FsPath));
Tcl_FSDupInternalRepProc *dupProc;
- copyPtr->internalRep.otherValuePtr = copyFsPathPtr;
+ copyPtr->internalRep.otherValuePtr = (VOID *) copyFsPathPtr;
if (srcFsPathPtr->translatedPathPtr != NULL) {
copyFsPathPtr->translatedPathPtr = srcFsPathPtr->translatedPathPtr;