Skip to content

Commit

Permalink
Fix 3 more signed <-> unsigned warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jan.nijtmans committed Nov 30, 2023
1 parent be07879 commit 7c594fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions generic/tclXkeylist.c
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ SetKeyedListFromAny(
Tcl_Obj *objPtr
) {
keylIntObj_t *keylIntPtr;
size_t idx;
Tcl_Size idx;
Tcl_Size objc;
Tcl_Obj **objv;

Expand Down Expand Up @@ -1243,7 +1243,7 @@ Tcl_KeylsetObjCmd(
) {
Tcl_Obj *keylVarPtr, *newVarObj;
const char *key;
size_t idx;
Tcl_Size idx;
(void)dummy;

if ((objc < 4) || ((objc % 2) != 0)) {
Expand Down Expand Up @@ -1307,7 +1307,7 @@ Tcl_KeyldelObjCmd(
) {
Tcl_Obj *keylVarPtr, *keylPtr;
const char *key;
size_t idx;
Tcl_Size idx;
int status;
(void)dummy;

Expand Down

0 comments on commit 7c594fa

Please sign in to comment.