Skip to content
Snippets Groups Projects
Commit 268efd5a authored by orestis.malaspin's avatar orestis.malaspin
Browse files

Merge branch 'Alejandro.Escribano-master-patch-04646' into 'master'

Updated small typo in pretty_print() function

See merge request !20
parents ea8dca29 028101ec
No related branches found
No related tags found
1 merge request!20Updated small typo in pretty_print() function
Pipeline #24400 passed
......@@ -707,7 +707,7 @@ void pretty_print(tree_t tree, int n) {
printf(" ");
}
printf("%d\n", tree->info);
pretty_print(tree->left);
pretty_print(tree->left, n+1);
}
}
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment