diff options
| author | nijtmans <nijtmans> | 2009-11-18 21:59:49 (GMT) |
|---|---|---|
| committer | nijtmans <nijtmans> | 2009-11-18 21:59:49 (GMT) |
| commit | 22766e7b4dbaae64d120157609608fe808dcd0e3 (patch) | |
| tree | ddefc8b4f539a5dd99629207908dae49d8e515db /generic/tclDate.c | |
| parent | 45b0ff09038e53c83b7ed6fc205f9d44a8e284a0 (diff) | |
| download | tcl-22766e7b4dbaae64d120157609608fe808dcd0e3.zip tcl-22766e7b4dbaae64d120157609608fe808dcd0e3.tar.gz tcl-22766e7b4dbaae64d120157609608fe808dcd0e3.tar.bz2 | |
Eliminate various gcc warnings (in -Wextra mode)
Diffstat (limited to 'generic/tclDate.c')
| -rw-r--r-- | generic/tclDate.c | 10 |
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 } }; /* |
