mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-22 17:51:53 +00:00
Fixes a bug with multiple function arguments.
This commit is contained in:
parent
bf6d91dc4e
commit
736fd7303c
@ -347,7 +347,7 @@ decls: /* EMPTY */ { $$ = NULL; }
|
|||||||
|
|
||||||
/* Declarations that have no ';' at the end. */
|
/* Declarations that have no ';' at the end. */
|
||||||
declsn: one_decl { $$ = $1; }
|
declsn: one_decl { $$ = $1; }
|
||||||
| declsn ';' one_decl {
|
| one_decl ';' declsn {
|
||||||
$$ = $1;
|
$$ = $1;
|
||||||
$$->aux2 = $3;
|
$$->aux2 = $3;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user