From b0cdeda4f290bceb214c760d6d23c01a673e6a87 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Mon, 14 Nov 2011 14:14:45 +0000 Subject: [PATCH] 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 `;' --- src/glsl/glsl_parser.yy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.30.2