summaryrefslogtreecommitdiffstats
path: root/generic/tclCompCmdsGR.c
diff options
context:
space:
mode:
authorapnadkarni <apnmbx-wits@yahoo.com>2023-08-14 03:42:58 (GMT)
committerapnadkarni <apnmbx-wits@yahoo.com>2023-08-14 03:42:58 (GMT)
commited918cb027572a80468457db906cbb132f29b920 (patch)
tree2a5f8bf916d1f7d4478211026bf82a3004b34b35 /generic/tclCompCmdsGR.c
parentbaa91f87baabfa31e9174c78f76125d98d891b4e (diff)
parent37289addc2ac030cfe16cee51fedaa9c54b7c17b (diff)
downloadtcl-ed918cb027572a80468457db906cbb132f29b920.zip
tcl-ed918cb027572a80468457db906cbb132f29b920.tar.gz
tcl-ed918cb027572a80468457db906cbb132f29b920.tar.bz2
Bug [bc076f4f0e]. Fix large indexing broken by commit [0b05b5c750df]. Also preserves Tk bug fix [a9929f112a]
Diffstat (limited to 'generic/tclCompCmdsGR.c')
-rw-r--r--generic/tclCompCmdsGR.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompCmdsGR.c b/generic/tclCompCmdsGR.c
index 892387e..f35cd50 100644
--- a/generic/tclCompCmdsGR.c
+++ b/generic/tclCompCmdsGR.c
@@ -49,8 +49,8 @@ static int IndexTailVarIfKnown(Tcl_Interp *interp,
int
TclGetIndexFromToken(
Tcl_Token *tokenPtr,
- int before,
- int after,
+ size_t before,
+ size_t after,
int *indexPtr)
{
Tcl_Obj *tmpObj;