summaryrefslogtreecommitdiffstats
path: root/generic/tclCmdIL.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-03-08 11:38:58 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-03-08 11:38:58 (GMT)
commit9c52d351f19a451f9d7fff451624b195959a558d (patch)
tree243ef012d5f26c9731c3513281ab849864ffbe81 /generic/tclCmdIL.c
parent559954ccb37cf5d1bde6ed4bb37cde477b76a154 (diff)
downloadtcl-9c52d351f19a451f9d7fff451624b195959a558d.zip
tcl-9c52d351f19a451f9d7fff451624b195959a558d.tar.gz
tcl-9c52d351f19a451f9d7fff451624b195959a558d.tar.bz2
More size_t
Diffstat (limited to 'generic/tclCmdIL.c')
-rw-r--r--generic/tclCmdIL.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCmdIL.c b/generic/tclCmdIL.c
index 261cc65..07e42ef 100644
--- a/generic/tclCmdIL.c
+++ b/generic/tclCmdIL.c
@@ -3383,7 +3383,7 @@ Tcl_LsearchObjCmd(
}
if (result == TCL_ERROR) {
Tcl_AppendObjToErrorInfo(interp, Tcl_ObjPrintf(
- "\n (-index option item number %" TCL_Z_MODIFIER "d)", j));
+ "\n (-index option item number %" TCL_Z_MODIFIER "u)", j));
goto done;
}
sortInfo.indexv[j] = encoded;
@@ -4110,7 +4110,7 @@ Tcl_LsortObjCmd(
}
if (result == TCL_ERROR) {
Tcl_AppendObjToErrorInfo(interp, Tcl_ObjPrintf(
- "\n (-index option item number %" TCL_Z_MODIFIER "d)", j));
+ "\n (-index option item number %" TCL_Z_MODIFIER "u)", j));
sortInfo.resultCode = TCL_ERROR;
goto done;
}