summaryrefslogtreecommitdiffstats
path: root/generic/tclIndexObj.c
diff options
context:
space:
mode:
authornijtmans <nijtmans@noemail.net>2009-11-18 21:59:49 (GMT)
committernijtmans <nijtmans@noemail.net>2009-11-18 21:59:49 (GMT)
commit59939eb7b2f44c788b4924f73c68ce4aa0713a69 (patch)
treeddefc8b4f539a5dd99629207908dae49d8e515db /generic/tclIndexObj.c
parent52fb8cfe24d82c4f25c49067b2cdd2918444cf86 (diff)
downloadtcl-59939eb7b2f44c788b4924f73c68ce4aa0713a69.zip
tcl-59939eb7b2f44c788b4924f73c68ce4aa0713a69.tar.gz
tcl-59939eb7b2f44c788b4924f73c68ce4aa0713a69.tar.bz2
Eliminate various gcc warnings (in -Wextra mode)
FossilOrigin-Name: 8780faf488c79569934af0cd318800d73489137d
Diffstat (limited to 'generic/tclIndexObj.c')
-rw-r--r--generic/tclIndexObj.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclIndexObj.c b/generic/tclIndexObj.c
index 7125891..67c420f 100644
--- a/generic/tclIndexObj.c
+++ b/generic/tclIndexObj.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclIndexObj.c,v 1.52 2009/09/30 03:11:26 dgp Exp $
+ * RCS: @(#) $Id: tclIndexObj.c,v 1.53 2009/11/18 21:59:50 nijtmans Exp $
*/
#include "tclInt.h"
@@ -524,10 +524,10 @@ TclInitPrefixCmd(
Tcl_Interp *interp) /* Current interpreter. */
{
static const EnsembleImplMap prefixImplMap[] = {
- {"all", PrefixAllObjCmd},
- {"longest", PrefixLongestObjCmd},
- {"match", PrefixMatchObjCmd},
- {NULL}
+ {"all", PrefixAllObjCmd, NULL, NULL, NULL},
+ {"longest", PrefixLongestObjCmd, NULL, NULL, NULL},
+ {"match", PrefixMatchObjCmd, NULL, NULL, NULL},
+ {NULL, NULL, NULL, NULL, NULL}
};
Tcl_Command prefixCmd;