summaryrefslogtreecommitdiffstats
path: root/generic/tclObj.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2017-02-16 15:51:33 (GMT)
committerdgp <dgp@users.sourceforge.net>2017-02-16 15:51:33 (GMT)
commitdc151ef624774207acdd55309d1812f75c528d99 (patch)
tree4541a38620d23b02bcaacc14664b95227715a1bb /generic/tclObj.c
parent37143a57b54a07eebe0375212823fbc856406a99 (diff)
parent462ffc792711dc33c7d17b48fc3bdb65bee277de (diff)
downloadtcl-dc151ef624774207acdd55309d1812f75c528d99.zip
tcl-dc151ef624774207acdd55309d1812f75c528d99.tar.gz
tcl-dc151ef624774207acdd55309d1812f75c528d99.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 35a5b39..b396f2e 100644
--- a/generic/tclObj.c
+++ b/generic/tclObj.c
@@ -345,17 +345,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,