From 857461fb63cee483b1161c4e0c36b7889ed884db Mon Sep 17 00:00:00 2001 From: Georg Hopp Date: Mon, 16 Sep 2013 15:04:29 +0100 Subject: [PATCH] code formatting --- src/tree/destroy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tree/destroy.c b/src/tree/destroy.c index a60d87a..364db9d 100644 --- a/src/tree/destroy.c +++ b/src/tree/destroy.c @@ -39,8 +39,8 @@ treeDestroy(Tree * this, TreeAction action) * If we come from the right so nothing and go to our * next parent. */ - if (((NULL == TREE_LEFT(node) || previous == TREE_LEFT(node)) - && NULL == TREE_RIGHT(node)) + if (((NULL == TREE_LEFT(node) + || previous == TREE_LEFT(node)) && NULL == TREE_RIGHT(node)) || previous == TREE_RIGHT(node)) { Tree parent = TREE_PARENT(node);