From 6651d4dbf74dc4591fbaf5250bfd6f7d58ce0363 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 18 Sep 2011 18:53:59 +0000 Subject: Tidy. git-svn-id: http://svn.drobilla.net/zix/trunk@14 df6676b4-ccc9-40e5-b5d6-7c4628a128e3 --- src/tree.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/tree.c') diff --git a/src/tree.c b/src/tree.c index 60f983e..b197306 100644 --- a/src/tree.c +++ b/src/tree.c @@ -554,9 +554,9 @@ ZixStatus zix_tree_remove(ZixTree* t, ZixTreeIter ti) { ZixTreeNode* const n = ti; - ZixTreeNode** pp = NULL; // parent pointer - ZixTreeNode* to_balance = n->parent; // lowest node to start rebalace at - int8_t d_balance = 0; // delta(balance) for n->parent + ZixTreeNode** pp = NULL; // parent pointer + ZixTreeNode* to_balance = n->parent; // lowest node to balance + int8_t d_balance = 0; // delta(balance) for n->parent #ifdef ZIX_TREE_DUMP printf("*** REMOVE %ld\n", (intptr_t)n->data); -- cgit v1.2.1