* cosmetics

This commit is contained in:
djcb
2012-09-17 17:42:56 +03:00
parent 2db1606a36
commit 7fe594fb2a
3 changed files with 17 additions and 10 deletions

View File

@ -406,7 +406,9 @@ prune_empty_containers (MuContainer *root_set)
{
MuContainer *cur;
mu_container_foreach (root_set, (MuContainerForeachFunc)prune_maybe, NULL);
mu_container_foreach (root_set,
(MuContainerForeachFunc)prune_maybe,
NULL);
/* and prune the root_set itself... */
for (cur = root_set; cur; cur = cur->next) {
@ -418,7 +420,8 @@ prune_empty_containers (MuContainer *root_set)
MuContainer *newchild;
newchild = cur->child;
cur->child = NULL;
root_set = mu_container_append_siblings (root_set, newchild);
root_set = mu_container_append_siblings (root_set,
newchild);
}
}