From a86d8ab329b94c6c259c001ab210dac84fb7535b Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sun, 28 Nov 2010 22:45:39 +0100 Subject: [PATCH] use con_num_children() --- src/cmdparse.y | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/cmdparse.y b/src/cmdparse.y index 931729d8..28cff60c 100644 --- a/src/cmdparse.y +++ b/src/cmdparse.y @@ -650,10 +650,8 @@ resize: } else { LOG("tiling resize\n"); /* get the default percentage */ - int children = 0; + int children = con_num_children(focused->parent); Con *other; - TAILQ_FOREACH(other, &(focused->parent->nodes_head), nodes) - children++; LOG("ins. %d children\n", children); double percentage = 1.0 / children; LOG("default percentage = %f\n", percentage); -- 2.39.5