summaryrefslogtreecommitdiffstats
path: root/generic/tclPathObj.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-12-01 13:53:51 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-12-01 13:53:51 (GMT)
commit200910b9c19ac1986d28677de7b427ee774d8e40 (patch)
treee61a959db97a24d3f524d29aa17e9139a7bc84dc /generic/tclPathObj.c
parente802927981b7af35c948a4c887be2a5399151d95 (diff)
parentf0d821a83cc98067d756402bebd4d941aa7e6cff (diff)
downloadtcl-200910b9c19ac1986d28677de7b427ee774d8e40.zip
tcl-200910b9c19ac1986d28677de7b427ee774d8e40.tar.gz
tcl-200910b9c19ac1986d28677de7b427ee774d8e40.tar.bz2
merge core-8-branch. Various cleanup: unused structure names, unused #defines. Change some "epoch"-related fields from int to size_t. Nothing functional.
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. */