Skip to content

Commit

Permalink
Add missing semicolons.
Browse files Browse the repository at this point in the history
  • Loading branch information
brouhaha committed Jun 24, 2016
1 parent 9b985f4 commit f3d9963
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parser.y
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ image_ranges:


input_file_clause:
FILE_KEYWORD STRING ';' { input_set_file ($2) } ;
FILE_KEYWORD STRING ';' { input_set_file ($2); } ;

image_clause:
IMAGE INTEGER ';' { range_t range = { $2, $2 }; input_images (range); } ;
Expand All @@ -119,7 +119,7 @@ images_clause:
IMAGES image_ranges ';' ;

rotate_clause:
ROTATE INTEGER ';' { input_set_rotation ($2) } ;
ROTATE INTEGER ';' { input_set_rotation ($2); } ;

unit:
/* empty */ /* default to INCH */ { $$ = 1.0; }
Expand Down

0 comments on commit f3d9963

Please sign in to comment.