summaryrefslogtreecommitdiffstats
path: root/src/glsl
diff options
context:
space:
mode:
authorJosé Fonseca <[email protected]>2011-11-14 14:14:45 +0000
committerJosé Fonseca <[email protected]>2011-11-14 14:14:45 +0000
commitb0cdeda4f290bceb214c760d6d23c01a673e6a87 (patch)
tree2a12eac325f850abafe5001419c01323c0fe2e61 /src/glsl
parentab3ace56c477aec233952038149c2f0880bc0e50 (diff)
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 `;'
Diffstat (limited to 'src/glsl')
-rw-r--r--src/glsl/glsl_parser.yy2
1 files changed, 1 insertions, 1 deletions
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
{