fixed 'return NULL' in 'void continer_map(...)'

This commit is contained in:
Taiyu 2015-08-10 15:50:47 -07:00
parent cd9e71fb03
commit f7cee6a1b9
1 changed files with 3 additions and 3 deletions

View File

@ -3,16 +3,16 @@
void container_map(swayc_t *container, void (*f)(swayc_t *view, void *data), void *data) {
if (!container->children) {
return NULL;
return;
}
int i;
for (i = 0; i < container->children->length; ++i) {
swayc_t *child = container->children->items[i];
f(child, data);
if(child->children)
if (child->children) {
container_map(child, f, data);
}
}
return NULL;
}