Skip to content

Commit

Permalink
Fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jan.nijtmans committed Jan 26, 2024
1 parent 1c31fab commit 72a0679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generic/ttk/ttkPanedwindow.c
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ static int PanedSashposCommand(
}
if (sashIndex < 0 || sashIndex >= Ttk_NumberContent(pw->paned.mgr) - 1) {
Tcl_SetObjResult(interp, Tcl_ObjPrintf(
"sash index %" TCL_SIZE_MODIFIER "d out of range", sashIndex));
"sash index %" TCL_LL_MODIFIER "d out of range", sashIndex));
Tcl_SetErrorCode(interp, "TTK", "PANE", "SASH_INDEX", NULL);
return TCL_ERROR;
}
Expand Down

0 comments on commit 72a0679

Please sign in to comment.