aboutsummaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scope.c b/scope.c
index 379be97..11a9c5b 100644
--- a/scope.c
+++ b/scope.c
@@ -16,8 +16,8 @@ scope* mkscope()
for (i = 0; i < HASH_SIZE; i++)
p->table[i] = NULL;
- p->next = NULL;
- p->function_boundry = 0;
+ p->prev = NULL;
+ p->ret_var= NULL;
return p;
}