From: Chad Versace Date: Thu, 27 Jan 2011 09:40:51 +0000 (-0800) Subject: glsl: Remove extraneously extraneous parens X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cc4a787044ac2b1616a982f6efde4a0cb7542304;p=mesa.git glsl: Remove extraneously extraneous parens I found this parenthetical usage of parentheses to be extraneously extraneous: (yyextra->ARB_fragment_coord_conventions_enable) --- diff --git a/src/glsl/glsl_lexer.lpp b/src/glsl/glsl_lexer.lpp index 555bc1f8854..4d6866390d6 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);