diff options
author | apnadkarni <apnmbx-wits@yahoo.com> | 2023-05-19 22:18:51 (GMT) |
---|---|---|
committer | apnadkarni <apnmbx-wits@yahoo.com> | 2023-05-19 22:18:51 (GMT) |
commit | 83d22bd1f6fd20b5ce07fc4e16af80619f859422 (patch) | |
tree | 05213c4379b782d814891b30ccb4c2ee20a9139d /generic/tclOOInfo.c | |
parent | 861c6c226aad3ca14957bb6db4b46bdac585a82e (diff) | |
download | tcl-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.c | 2 |
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); |