summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/compiler/glsl/ast_expr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/ast_expr.cpp b/src/compiler/glsl/ast_expr.cpp
index e624d11cf3b..1fd5b6e642d 100644
--- a/src/compiler/glsl/ast_expr.cpp
+++ b/src/compiler/glsl/ast_expr.cpp
@@ -79,7 +79,7 @@ ast_expression::operator_string(enum ast_operators op)
ast_expression_bin::ast_expression_bin(int oper, ast_expression *ex0,
- ast_expression *ex1) :
+ ast_expression *ex1) :
ast_expression(oper, ex0, ex1, NULL)
{
assert((oper >= ast_plus) && (oper <= ast_logic_not));