aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index f3f354c..ca1d2f3 100644
--- a/src/main.c
+++ b/src/main.c
@@ -24,8 +24,8 @@ main(int argc, char **argv)
size_t srclen;
char *src = readfile(argv[1], &srclen);
- struct lexemes_soa toks = lexstring(src, srclen);
- struct ast_soa ast = parsetoks(toks);
+ struct lexemes toks = lexstring(src, srclen);
+ struct ast ast = parsetoks(toks);
codegen(ast, toks);
#if DEBUG