diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-06-22 11:59:58 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-06-22 11:59:58 (GMT) |
commit | f35db8a093f135e9bbe9eff49aeac8f033fbc085 (patch) | |
tree | dc7978cd541e0d0cc0c03d1427f98a6954771b24 /generic/tclInt.h | |
parent | 22c9ba1a272f1a1aedbff98a5557e17754bb0b8b (diff) | |
download | tcl-f35db8a093f135e9bbe9eff49aeac8f033fbc085.zip tcl-f35db8a093f135e9bbe9eff49aeac8f033fbc085.tar.gz tcl-f35db8a093f135e9bbe9eff49aeac8f033fbc085.tar.bz2 |
Proposed fix for [44452e2c55]: indexObj.test failures on i386
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 25a23ed..f4bf769 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -4219,7 +4219,7 @@ MODULE_SCOPE Tcl_Obj * TclGetArrayDefault(Var *arrayPtr); */ MODULE_SCOPE int TclIndexEncode(Tcl_Interp *interp, Tcl_Obj *objPtr, - int before, int after, int *indexPtr); + Tcl_Size before, Tcl_Size after, int *indexPtr); MODULE_SCOPE Tcl_Size TclIndexDecode(int encoded, Tcl_Size endValue); /* Constants used in index value encoding routines. */ |