changed little error in main

This commit is contained in:
Felix Müller 2024-05-14 14:57:15 +02:00
parent b3ad82cc49
commit 8c063d7016
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ int main(int argc, char *argv[]) {
yyparse(); yyparse();
FILE *output = fopen("test.txt", "w"); FILE *output = fopen("test.txt", "w");
AST_fprint_graphviz(file, root); AST_fprint_graphviz(output, root);
fclose(output); fclose(output);
return 0; return 0;
} }