summaryrefslogtreecommitdiffstats
path: root/generic/tclIOUtil.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-01 10:33:33 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-01 10:33:33 (GMT)
commitd99566171273e05f659f3f4f364b9d1948ec8565 (patch)
treec4a99a3ac584ca9f6609ca8575261cf7b3d419a0 /generic/tclIOUtil.c
parentd52b3eef8055623bab469007083629a4e134955b (diff)
parent724de352e37dd0fe795024353378cd662593b4a6 (diff)
downloadtcl-d99566171273e05f659f3f4f364b9d1948ec8565.zip
tcl-d99566171273e05f659f3f4f364b9d1948ec8565.tar.gz
tcl-d99566171273e05f659f3f4f364b9d1948ec8565.tar.bz2
Merge 8.6
Diffstat (limited to 'generic/tclIOUtil.c')
-rw-r--r--generic/tclIOUtil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c
index f8072b6..acc9e40 100644
--- a/generic/tclIOUtil.c
+++ b/generic/tclIOUtil.c
@@ -2697,7 +2697,7 @@ Tcl_FSGetCwd(
* always be in the 'else' branch below which is simpler.
*/
- ClientData cd = (ClientData) Tcl_FSGetNativePath(norm);
+ void *cd = (void *) Tcl_FSGetNativePath(norm);
FsUpdateCwd(norm, TclNativeDupInternalRep(cd));
Tcl_DecrRefCount(norm);
@@ -4488,7 +4488,7 @@ Tcl_FSGetFileSystemForPath(
return NULL;
}
- /* Start with an up-to-date copy of the master filesystem. */
+ /* Start with an up-to-date copy of the filesystem. */
fsRecPtr = FsGetFirstFilesystem();
Claim();