diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-01-28 21:12:57 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-01-28 21:12:57 (GMT) |
| commit | c95d2cdab74b6d57af133bdc3478dc300f171481 (patch) | |
| tree | 1c08d11f047f75b2a25d2492b542ef992259ea6c /generic/tclTest.c | |
| parent | 59f73d4a40efe8019c5fc169f1cb8c3252c79cef (diff) | |
| download | tcl-c95d2cdab74b6d57af133bdc3478dc300f171481.zip tcl-c95d2cdab74b6d57af133bdc3478dc300f171481.tar.gz tcl-c95d2cdab74b6d57af133bdc3478dc300f171481.tar.bz2 | |
Missing "const"
Diffstat (limited to 'generic/tclTest.c')
| -rw-r--r-- | generic/tclTest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c index 02e1fac..08b3306 100644 --- a/generic/tclTest.c +++ b/generic/tclTest.c @@ -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 }; |
