summaryrefslogtreecommitdiffstats
path: root/generic/tclGetDate.y
diff options
context:
space:
mode:
authorsebres <sebres@users.sourceforge.net>2018-10-08 14:08:05 (GMT)
committersebres <sebres@users.sourceforge.net>2018-10-08 14:08:05 (GMT)
commit9931564ea5b0968f70fcf434405bb6712c82df73 (patch)
tree4d775a022caeed5b56a465915a0eaff801ca3594 /generic/tclGetDate.y
parent26cbce7e816ebd178b000f225c73f94a91e3b0b1 (diff)
downloadtcl-9931564ea5b0968f70fcf434405bb6712c82df73.zip
tcl-9931564ea5b0968f70fcf434405bb6712c82df73.tar.gz
tcl-9931564ea5b0968f70fcf434405bb6712c82df73.tar.bz2
tclGetDate.y: added missing semicolon, tclDate.c rebuilt using Bison 3.1;
resolves warning "maybe-uninitialized" by `*++yyvsp = yylval;`
Diffstat (limited to 'generic/tclGetDate.y')
-rw-r--r--generic/tclGetDate.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclGetDate.y b/generic/tclGetDate.y
index 6aacf93..f25f45b 100644
--- a/generic/tclGetDate.y
+++ b/generic/tclGetDate.y
@@ -442,10 +442,10 @@ unit : tSEC_UNIT {
;
INTNUM : tUNUMBER {
- $$ = $1
+ $$ = $1;
}
| tISOBASE {
- $$ = $1
+ $$ = $1;
}
;