summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tree.c b/src/tree.c
index c54b13b..6d838cd 100644
--- a/src/tree.c
+++ b/src/tree.c
@@ -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;