summaryrefslogtreecommitdiffstats
path: root/generic/tclPathObj.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-12-01 15:03:46 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-12-01 15:03:46 (GMT)
commit71c032c81630285df2581432aeb509295fbb39ed (patch)
treed7736549826d2697b558a2db03759c1f7e3f3524 /generic/tclPathObj.c
parent4bf4b7d35c401066e61ad2ce1d21b04709a57938 (diff)
parent200910b9c19ac1986d28677de7b427ee774d8e40 (diff)
downloadtcl-71c032c81630285df2581432aeb509295fbb39ed.zip
tcl-71c032c81630285df2581432aeb509295fbb39ed.tar.gz
tcl-71c032c81630285df2581432aeb509295fbb39ed.tar.bz2
merge trunk
Diffstat (limited to 'generic/tclPathObj.c')
-rw-r--r--generic/tclPathObj.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclPathObj.c b/generic/tclPathObj.c
index 49d62dc..d2364ac 100644
--- a/generic/tclPathObj.c
+++ b/generic/tclPathObj.c
@@ -72,7 +72,7 @@ static const Tcl_ObjType tclFsPathType = {
*
*/
-typedef struct FsPath {
+typedef struct {
Tcl_Obj *translatedPathPtr; /* Name without any ~user sequences. If this
* is NULL, then this is a pure normalized,
* absolute path object, in which the parent
@@ -91,7 +91,7 @@ typedef struct FsPath {
* below. */
ClientData nativePathPtr; /* Native representation of this path, which
* is filesystem dependent. */
- int filesystemEpoch; /* Used to ensure the path representation was
+ size_t filesystemEpoch; /* Used to ensure the path representation was
* generated during the correct filesystem
* epoch. The epoch changes when
* filesystem-mounts are changed. */