Add missing semicolon to parser rule "cond_else"

Acked-by: Steve Lawrence <slawrence@tresys.com>
This commit is contained in:
Scapelli 2014-09-18 15:47:45 +02:00 committed by Steve Lawrence
parent e4d693ae87
commit 387dc6342e

View file

@ -356,6 +356,7 @@ cond_else : ELSE '{' cond_pol_list '}'
{ $$ = $3; }
| /* empty */
{ $$ = NULL; }
;
cond_expr : '(' cond_expr ')'
{ $$ = $2;}
| NOT cond_expr