From 6fb54d58ac286080e63ef701a089ca5536f7e149 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Fri, 17 Jan 2014 13:48:59 +0000 Subject: [PATCH] Tiling2: Fixed a bug in the tree walker. --- src/modules/tiling/window_tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/tiling/window_tree.c b/src/modules/tiling/window_tree.c index 64a71c0cf..c76d12cc9 100644 --- a/src/modules/tiling/window_tree.c +++ b/src/modules/tiling/window_tree.c @@ -13,7 +13,7 @@ tiling_window_tree_walk(Window_Tree *root, void (*func)(void *)) EINA_INLIST_FOREACH_SAFE(root->children, itr_safe, itr) { - tiling_window_tree_free(itr); + tiling_window_tree_walk(itr, func); } func(root); }