aboutsummaryrefslogtreecommitdiffstats
path: root/src/nodes.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nodes.c')
-rw-r--r--src/nodes.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nodes.c b/src/nodes.c
index a420189..a5b67d1 100644
--- a/src/nodes.c
+++ b/src/nodes.c
@@ -8,6 +8,7 @@ alloc_node(NodeType type) {
8 node->type = type; 8 node->type = type;
9 node->line = 0; 9 node->line = 0;
10 node->col = 0; 10 node->col = 0;
11 node->scope = NULL;
11 return node; 12 return node;
12} 13}
13 14