summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-03-31 20:10:33 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-03-31 20:10:33 (GMT)
commiteda63bdf06c5012fdb062d138d9ad950d77ed25b (patch)
treeb9e5674b9bf5c5ea5986b958d40938efd61f7098 /generic/tclCompile.h
parentc21ba3a0d2f147398eaea4649b607d9eb72ba0ad (diff)
downloadtcl-eda63bdf06c5012fdb062d138d9ad950d77ed25b.zip
tcl-eda63bdf06c5012fdb062d138d9ad950d77ed25b.tar.gz
tcl-eda63bdf06c5012fdb062d138d9ad950d77ed25b.tar.bz2
More progress
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r--generic/tclCompile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h
index 50a43d6..4c55065 100644
--- a/generic/tclCompile.h
+++ b/generic/tclCompile.h
@@ -963,8 +963,8 @@ typedef struct JumpFixup {
typedef struct JumpFixupArray {
JumpFixup *fixup; /* Points to start of jump fixup array. */
- int next; /* Index of next free array entry. */
- int end; /* Index of last usable entry in array. */
+ size_t next; /* Index of next free array entry. */
+ size_t end; /* Index of last usable entry in array. */
int mallocedArray; /* 1 if array was expanded and fixups points
* into the heap, else 0. */
JumpFixup staticFixupSpace[JUMPFIXUP_INIT_ENTRIES];