summaryrefslogtreecommitdiffstats
path: root/generic/tclDate.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/tclDate.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/tclDate.c')
-rw-r--r--generic/tclDate.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclDate.c b/generic/tclDate.c
index 7f67156..5d4a507 100644
--- a/generic/tclDate.c
+++ b/generic/tclDate.c
@@ -2325,7 +2325,7 @@ static TABLE MonthDayTable[] = {
{ "thurs", tDAY, 4 },
{ "friday", tDAY, 5 },
{ "saturday", tDAY, 6 },
- { NULL }
+ { NULL, 0, 0 }
};
/*
@@ -2343,7 +2343,7 @@ static TABLE UnitsTable[] = {
{ "min", tSEC_UNIT, 60 },
{ "second", tSEC_UNIT, 1 },
{ "sec", tSEC_UNIT, 1 },
- { NULL }
+ { NULL, 0, 0 }
};
/*
@@ -2375,7 +2375,7 @@ static TABLE OtherTable[] = {
{ "ago", tAGO, 1 },
{ "epoch", tEPOCH, 0 },
{ "stardate", tSTARDATE, 0 },
- { NULL }
+ { NULL, 0, 0 }
};
/*
@@ -2461,7 +2461,7 @@ static TABLE TimezoneTable[] = {
/* ADDED BY Marco Nijdam */
{ "dst", tDST, HOUR( 0) }, /* DST on (hour is ignored) */
/* End ADDED */
- { NULL }
+ { NULL, 0, 0 }
};
/*
@@ -2494,7 +2494,7 @@ static TABLE MilitaryTable[] = {
{ "x", tZONE, HOUR( 11) },
{ "y", tZONE, HOUR( 12) },
{ "z", tZONE, HOUR( 0) },
- { NULL }
+ { NULL, 0, 0 }
};
/*