summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2010-02-22 13:22:10 -0800
committerIan Romanick <[email protected]>2010-02-22 13:22:10 -0800
commit53d2774ee397fc35fc0458d994d39dd3f27a5eb1 (patch)
treebec173c04a95feab38ac7df41674e69e2266b840
parenta87ac255cf7ef0672b4de865d82e6a40c93b57d8 (diff)
Initialize the node structure embedded in the ast_node
-rw-r--r--glsl_parser_extras.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/glsl_parser_extras.cc b/glsl_parser_extras.cc
index 679b600fb3c..36a6ca8264b 100644
--- a/glsl_parser_extras.cc
+++ b/glsl_parser_extras.cc
@@ -108,7 +108,7 @@ ast_node::print(void) const
ast_node::ast_node(void)
{
-// make_empty_list(& ast->node);
+ make_empty_list(this);
}
void