From 736fd7303cb05e910507edaa9310178a23dbcf1e Mon Sep 17 00:00:00 2001 From: Ondrej Zajicek Date: Tue, 27 Sep 2011 13:49:32 +0200 Subject: Fixes a bug with multiple function arguments. --- filter/config.Y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filter/config.Y b/filter/config.Y index 3c5f18b..4dffdc6 100644 --- a/filter/config.Y +++ b/filter/config.Y @@ -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; } -- cgit v1.2.3