diff --git a/src/binarytree.c b/src/binarytree.c index 681f3b0..43403b9 100644 --- a/src/binarytree.c +++ b/src/binarytree.c @@ -171,7 +171,6 @@ traverse(struct element * tree, void (*cb)(int, int)) int depth = 1; while (tree) { - /* we came from a left node */ if ((NULL == node->left || previous == node->left) && previous != node->right) {