From: José Fonseca Date: Mon, 14 Nov 2011 14:14:45 +0000 (+0000) Subject: glsl: Add missing ';' in action statement. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b0cdeda4f290bceb214c760d6d23c01a673e6a87;p=mesa.git 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 `;' --- diff --git a/src/glsl/glsl_parser.yy b/src/glsl/glsl_parser.yy index f3e87380035..836390453b1 100644 --- a/src/glsl/glsl_parser.yy +++ b/src/glsl/glsl_parser.yy @@ -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 {