diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-10-21 15:00:03 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-10-21 15:00:03 (GMT) |
| commit | 500e1529f18c04152dbf1a395c6c7a61f08f63b3 (patch) | |
| tree | 1d32628d69e10db1ce05e4619c01ab9f8ee0d66b /generic/tclTest.c | |
| parent | c08af43916648199e4e782f3d1d4fa937619eb3c (diff) | |
| download | tcl-500e1529f18c04152dbf1a395c6c7a61f08f63b3.zip tcl-500e1529f18c04152dbf1a395c6c7a61f08f63b3.tar.gz tcl-500e1529f18c04152dbf1a395c6c7a61f08f63b3.tar.bz2 | |
typedef Tcl_Size as int (which is the Tcl 8.7 part of TIP #628)
Diffstat (limited to 'generic/tclTest.c')
| -rw-r--r-- | generic/tclTest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c index 539c90f..ee6062b 100644 --- a/generic/tclTest.c +++ b/generic/tclTest.c @@ -552,7 +552,7 @@ Tcltest_Init( { Tcl_CmdInfo info; Tcl_Obj **objv, *objPtr; - size_t objc; + Tcl_Size objc; int index; static const char *const specialOptions[] = { "-appinitprocerror", "-appinitprocdeleteinterp", @@ -3539,7 +3539,7 @@ TestlistrepCmd( return TCL_ERROR; } else { Tcl_Obj **objs; - ListSizeT nobjs; + Tcl_Size nobjs; ListRep listRep; Tcl_Obj *listRepObjs[4]; |
