summaryrefslogtreecommitdiffstats
path: root/generic/tclTestObj.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2023-04-12 18:17:43 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2023-04-12 18:17:43 (GMT)
commite4749b5f325ab29ff28f2e3223df5f6db91c2e42 (patch)
treee0d2a9199b1f0ac266d0660a80625cc96103870b /generic/tclTestObj.c
parent83677a47e7b79ee7a64d2053ed2871b850898a2e (diff)
downloadtcl-e4749b5f325ab29ff28f2e3223df5f6db91c2e42.zip
tcl-e4749b5f325ab29ff28f2e3223df5f6db91c2e42.tar.gz
tcl-e4749b5f325ab29ff28f2e3223df5f6db91c2e42.tar.bz2
Some more int -> Tcl_Size (which is actually the same in 8.7). Backported from 9.0
Diffstat (limited to 'generic/tclTestObj.c')
-rw-r--r--generic/tclTestObj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclTestObj.c b/generic/tclTestObj.c
index 6c056da..0f5f21f 100644
--- a/generic/tclTestObj.c
+++ b/generic/tclTestObj.c
@@ -907,7 +907,7 @@ TestlistobjCmd(
Tcl_Size first; /* First index in the list */
Tcl_Size count; /* Count of elements in a list */
Tcl_Obj **varPtr;
- int i, len;
+ Tcl_Size i, len;
if (objc < 3) {
Tcl_WrongNumArgs(interp, 1, objv, "option arg ?arg...?");