mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +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. */
|
||||
declsn: one_decl { $$ = $1; }
|
||||
| declsn ';' one_decl {
|
||||
| one_decl ';' declsn {
|
||||
$$ = $1;
|
||||
$$->aux2 = $3;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user