diff options
-rw-r--r-- | src/tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -194,7 +194,7 @@ mq_tree_remove_allocated(MqTree *node) } else { node->parent->last_child = node->last_child; } - + /* Link children to siblings (may be NULL). */ if (node->first_child) { node->first_child->prev = node->prev; @@ -202,7 +202,7 @@ mq_tree_remove_allocated(MqTree *node) if (node->last_child) { node->last_child->next = node->next; } - + /* Link children to parent. */ for (child = node->first_child; child; child = child->next) { child->parent = node->parent; |