commit 68a075ec81aaec95824e9200e8333b12cb1972a1 parent 42150d52198b230f66ece68aefc20773ee98169f Author: Eyal Sawady <ecs@d2evs.net> Date: Mon, 7 Dec 2020 17:08:55 -0500 Initialize subunit Diffstat:
M | src/main.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main.c b/src/main.c @@ -9,7 +9,7 @@ main(int argc, char *argv[]) struct lexer lexer; lex_init(&lexer, stdin); - struct ast_subunit subunit; + struct ast_subunit subunit = {0}; parse(&lexer, &subunit); lex_finish(&lexer);