summaryrefslogtreecommitdiffstats
path: root/generic/tclOO.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/tclOO.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/tclOO.c')
-rw-r--r--generic/tclOO.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclOO.c b/generic/tclOO.c
index 4233020..a4e8cce 100644
--- a/generic/tclOO.c
+++ b/generic/tclOO.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclOO.c,v 1.24 2009/07/19 11:46:53 dkf Exp $
+ * RCS: @(#) $Id: tclOO.c,v 1.25 2009/11/18 21:59:51 nijtmans Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -121,12 +121,12 @@ static const DeclaredClassMethod objMethods[] = {
DCM("unknown", 0, TclOO_Object_Unknown),
DCM("variable", 0, TclOO_Object_LinkVar),
DCM("varname", 0, TclOO_Object_VarName),
- {NULL}
+ {NULL, 0, {0, NULL, NULL, NULL, NULL}}
}, clsMethods[] = {
DCM("create", 1, TclOO_Class_Create),
DCM("new", 1, TclOO_Class_New),
DCM("createWithNamespace", 0, TclOO_Class_CreateNs),
- {NULL}
+ {NULL, 0, {0, NULL, NULL, NULL, NULL}}
};
static char initScript[] =