diff --git a/cv8/program.c b/cv8/program.c index 3aefa9d..1b5ac0a 100644 --- a/cv8/program.c +++ b/cv8/program.c @@ -50,7 +50,7 @@ void destroy_tree(struct tree* tree) { void print_tree(struct tree* tree, int offset) { for (int i = 0; i < offset; i++) { - printf(" "); + //printf(" "); } printf("%s", tree->v); if (tree->left) {