about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index 61aab05..12c123d 100644
--- a/compile.c
+++ b/compile.c
@@ -22,7 +22,7 @@
 
 
 struct val nil = {VVAR, {.name = "nil"}};
-static struct var valnil = {"nil", {VNIL, {0}}};
+static struct var valnil = {"nil", {VNIL}};
 struct scope basescope = {NULL, &valnil, 1};
 
 static struct val zero = {VNUM, {0}};