diff options
Diffstat (limited to 'cccl.c')
| -rw-r--r-- | cccl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cccl.c b/cccl.c index 64da3b1..234fa7e 100644 --- a/cccl.c +++ b/cccl.c @@ -14,6 +14,6 @@ void cccl(struct cccl_File file) struct cccl_Node *parsed = cccl_parse(tokens, tokens_amount, 0, 0); - struct cccl_Variables scope; - cccl_execute(parsed, &scope); + struct cccl_Variables scope = {0}; + cccl_execute(parsed, &scope, 0); } |