glsl: Add missing ';' in action statement.

Addresses the warnings:

  warning: a `;' might be needed at the end of action code
  warning: future versions of Bison will not add the `;'
This commit is contained in:
José Fonseca
2011-11-14 14:14:45 +00:00
parent ab3ace56c4
commit b0cdeda4f2
+1 -1
View File
@@ -1706,7 +1706,7 @@ case_statement:
ast_case_statement *stmts = new(state) ast_case_statement($1);
stmts->stmts.push_tail(& $2->link);
$$ = stmts
$$ = stmts;
}
| case_statement statement
{