Skip to content

Commit

Permalink
Missing "const"
Browse files Browse the repository at this point in the history
  • Loading branch information
jan.nijtmans committed Jan 28, 2024
1 parent 59f73d4 commit c95d2cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generic/tclTest.c
Original file line number Diff line number Diff line change
Expand Up @@ -8436,7 +8436,7 @@ TestparseargsCmd(
static int foo = 0;
Tcl_Size count = objc;
Tcl_Obj **remObjv, *result[3];
Tcl_ArgvInfo argTable[] = {
const Tcl_ArgvInfo argTable[] = {
{TCL_ARGV_CONSTANT, "-bool", INT2PTR(1), &foo, "booltest", NULL},
TCL_ARGV_AUTO_REST, TCL_ARGV_AUTO_HELP, TCL_ARGV_TABLE_END
};
Expand Down

0 comments on commit c95d2cd

Please sign in to comment.