summaryrefslogtreecommitdiffstats
path: root/generic/tclOOInfo.c
diff options
context:
space:
mode:
authorapnadkarni <apnmbx-wits@yahoo.com>2023-05-19 22:18:51 (GMT)
committerapnadkarni <apnmbx-wits@yahoo.com>2023-05-19 22:18:51 (GMT)
commit83d22bd1f6fd20b5ce07fc4e16af80619f859422 (patch)
tree05213c4379b782d814891b30ccb4c2ee20a9139d /generic/tclOOInfo.c
parent861c6c226aad3ca14957bb6db4b46bdac585a82e (diff)
downloadtcl-83d22bd1f6fd20b5ce07fc4e16af80619f859422.zip
tcl-83d22bd1f6fd20b5ce07fc4e16af80619f859422.tar.gz
tcl-83d22bd1f6fd20b5ce07fc4e16af80619f859422.tar.bz2
Fix int/Tcl_Size pointer errors
Diffstat (limited to 'generic/tclOOInfo.c')
-rw-r--r--generic/tclOOInfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclOOInfo.c b/generic/tclOOInfo.c
index bbaaf02..ab17a35 100644
--- a/generic/tclOOInfo.c
+++ b/generic/tclOOInfo.c
@@ -1892,7 +1892,7 @@ static void
SortPropList(
Tcl_Obj *list)
{
- int ec;
+ Tcl_Size ec;
Tcl_Obj **ev;
Tcl_ListObjGetElements(NULL, list, &ec, &ev);