summaryrefslogtreecommitdiff
path: root/src/glsl
diff options
context:
space:
mode:
authorChad Versace <chad.versace@intel.com>2011-01-27 01:40:51 -0800
committerChad Versace <chad.versace@intel.com>2011-01-26 16:37:45 -0800
commitcc4a787044ac2b1616a982f6efde4a0cb7542304 (patch)
tree47e0c836662a4b3a08308cf1498931fa922fdb1b /src/glsl
parentad3dc370d86e3cfdb5e766bbf6dfbf247807044c (diff)
glsl: Remove extraneously extraneous parens
I found this parenthetical usage of parentheses to be extraneously extraneous: (yyextra->ARB_fragment_coord_conventions_enable)
Diffstat (limited to 'src/glsl')
-rw-r--r--src/glsl/glsl_lexer.lpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/glsl_lexer.lpp b/src/glsl/glsl_lexer.lpp
index 555bc1f885..4d6866390d 100644
--- a/src/glsl/glsl_lexer.lpp
+++ b/src/glsl/glsl_lexer.lpp
@@ -254,7 +254,7 @@ layout {
if ((yyextra->language_version >= 140)
|| yyextra->AMD_conservative_depth_enable
|| yyextra->ARB_explicit_attrib_location_enable
- || (yyextra->ARB_fragment_coord_conventions_enable)){
+ || yyextra->ARB_fragment_coord_conventions_enable) {
return LAYOUT_TOK;
} else {
yylval->identifier = strdup(yytext);