diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-10-07 12:01:36 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-10-07 12:01:36 (GMT) |
commit | 8a25b07dd23bcc12583561d71b9a85d5e70e05ad (patch) | |
tree | 0333b413be5bfc902ab83b5b1f137d32fcb4e390 /generic/tcl.h | |
parent | dbf4d47775f8ce70f4271e8a19a0dc3e79a69cea (diff) | |
parent | 18d2a1284274dae57b5637ef23d54e06751053c4 (diff) | |
download | tcl-8a25b07dd23bcc12583561d71b9a85d5e70e05ad.zip tcl-8a25b07dd23bcc12583561d71b9a85d5e70e05ad.tar.gz tcl-8a25b07dd23bcc12583561d71b9a85d5e70e05ad.tar.bz2 |
Fix gcc warnings (discovered with latest mingw, based on gcc 4.6.1)
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 7a94956..1bc3a89 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -2276,12 +2276,12 @@ typedef int (Tcl_ArgvGenFuncProc)(ClientData clientData, Tcl_Interp *interp, #define TCL_ARGV_AUTO_HELP \ {TCL_ARGV_HELP, "-help", NULL, NULL, \ - "Print summary of command-line options and abort"} + "Print summary of command-line options and abort", NULL} #define TCL_ARGV_AUTO_REST \ {TCL_ARGV_REST, "--", NULL, NULL, \ - "Marks the end of the options"} + "Marks the end of the options", NULL} #define TCL_ARGV_TABLE_END \ - {TCL_ARGV_END} + {TCL_ARGV_END, NULL, NULL, NULL, NULL, NULL} /* *---------------------------------------------------------------------------- |