Remove redundant depth argument from x_con_init(). (#2323)

This commit is contained in:
Ingo Bürk
2016-05-05 14:18:27 +02:00
committed by Michael Stapelberg
parent 152318bccf
commit b2397c9f01
4 changed files with 6 additions and 6 deletions

View File

@ -150,7 +150,7 @@ static int json_end_map(void *ctx) {
LOG("attaching\n");
con_attach(json_node, json_node->parent, true);
LOG("Creating window\n");
x_con_init(json_node, json_node->depth);
x_con_init(json_node);
json_node = json_node->parent;
}