diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-03-23 17:22:52 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-03-23 17:22:52 (GMT) |
commit | 71640ac39f283c3c6d7357ad47c296427bf1b156 (patch) | |
tree | d9df6fb19c2001f4242ae148bd977c18b5c8df94 /generic/tclCompile.c | |
parent | a07848357580733a6e4cb3fc559fb9267a2b974f (diff) | |
download | tcl-71640ac39f283c3c6d7357ad47c296427bf1b156.zip tcl-71640ac39f283c3c6d7357ad47c296427bf1b156.tar.gz tcl-71640ac39f283c3c6d7357ad47c296427bf1b156.tar.bz2 |
More progress
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r-- | generic/tclCompile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c index e23b0e6..4eb1a15 100644 --- a/generic/tclCompile.c +++ b/generic/tclCompile.c @@ -2990,7 +2990,7 @@ TclFindCompiledLocal( CompileEnv *envPtr) /* Points to the current compile environment*/ { CompiledLocal *localPtr; - int localVar = -1; + size_t localVar = TCL_INDEX_NONE; size_t i; Proc *procPtr; |