]> git.ipfire.org Git - pakfire.git/commitdiff
libpakfire: parser: Add missing ;
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 14 Mar 2019 05:57:16 +0000 (05:57 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 14 Mar 2019 05:57:16 +0000 (05:57 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/libpakfire/parser/grammar.y

index 8359e370f1925b87feb57bc4c9393f74d3ba2c31..f4e9b8f266025fbec34bf094e4ac9aa4b0c086ba 100644 (file)
@@ -160,7 +160,7 @@ block_closing                               : END NEWLINE
                                                        {
                                                                pakfire_free(current_block);
                                                                current_block = NULL;
-                                                       }
+                                                       };
 
 block                                          : block_opening block_assignments block_closing;
 
@@ -181,7 +181,7 @@ assignment                                  : variable ASSIGN value NEWLINE
                                                                int r = pakfire_parser_add_declaration(pakfire, declarations, $1, $2);
                                                                if (r < 0)
                                                                        ABORT;
-                                                       }
+                                                       };
 
 define                                         : DEFINE WHITESPACE variable NEWLINE
                                                        {