Add missing semicolon to parser rule "cond_else"
Acked-by: Steve Lawrence <slawrence@tresys.com>
This commit is contained in:
parent
e4d693ae87
commit
387dc6342e
1 changed files with 1 additions and 0 deletions
|
@ -356,6 +356,7 @@ cond_else : ELSE '{' cond_pol_list '}'
|
|||
{ $$ = $3; }
|
||||
| /* empty */
|
||||
{ $$ = NULL; }
|
||||
;
|
||||
cond_expr : '(' cond_expr ')'
|
||||
{ $$ = $2;}
|
||||
| NOT cond_expr
|
||||
|
|
Loading…
Reference in a new issue