summaryrefslogtreecommitdiff
path: root/src/02/01/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/02/01/main.c')
-rw-r--r--src/02/01/main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/02/01/main.c b/src/02/01/main.c
index a55fa9c..ae403e7 100644
--- a/src/02/01/main.c
+++ b/src/02/01/main.c
@@ -11,8 +11,7 @@ static void visitor(Node *node) {
visited_count++;
}
-void print_traversal(Node *tree, enum Traversal direction)
-{
+void print_traversal(Node *tree, enum Traversal direction) {
visited_count = 0;
memset(nodes, 0, sizeof(nodes));