Commit 736fd730 authored by Ondrej Zajicek's avatar Ondrej Zajicek
Browse files

Fixes a bug with multiple function arguments.

parent bf6d91dc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
   }