summaryrefslogtreecommitdiffstats
path: root/generic/tclObj.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2017-02-16 18:48:56 (GMT)
committerdgp <dgp@users.sourceforge.net>2017-02-16 18:48:56 (GMT)
commit674ed242bc26f2a7d7e773dfd456fd95164f8bac (patch)
tree9940afb84ebd36d050d00448f4c79363c87ecac5 /generic/tclObj.c
parent44a6a03d757bee64987fa31d866bf56b2f2e143c (diff)
parent3b5e7e9792b9b34111146557a3353756711b8133 (diff)
downloadtcl-674ed242bc26f2a7d7e773dfd456fd95164f8bac.zip
tcl-674ed242bc26f2a7d7e773dfd456fd95164f8bac.tar.gz
tcl-674ed242bc26f2a7d7e773dfd456fd95164f8bac.tar.bz2
merge trunk
Diffstat (limited to 'generic/tclObj.c')
-rw-r--r--generic/tclObj.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c
index 1abbb31..7ec259f 100644
--- a/generic/tclObj.c
+++ b/generic/tclObj.c
@@ -344,17 +344,17 @@ typedef struct ResolvedCmdName {
* reference (not the namespace that contains
* the referenced command). NULL if the name
* is fully qualified.*/
- long refNsId; /* refNsPtr's unique namespace id. Used to
+ size_t refNsId; /* refNsPtr's unique namespace id. Used to
* verify that refNsPtr is still valid (e.g.,
* it's possible that the cmd's containing
* namespace was deleted and a new one created
* at the same address). */
- int refNsCmdEpoch; /* Value of the referencing namespace's
+ size_t refNsCmdEpoch; /* Value of the referencing namespace's
* cmdRefEpoch when the pointer was cached.
* Before using the cached pointer, we check
* if the namespace's epoch was incremented;
* if so, this cached pointer is invalid. */
- int cmdEpoch; /* Value of the command's cmdEpoch when this
+ size_t cmdEpoch; /* Value of the command's cmdEpoch when this
* pointer was cached. Before using the cached
* pointer, we check if the cmd's epoch was
* incremented; if so, the cmd was renamed,