* use AM_CPPFLAGS instead of INCLUDES

This commit is contained in:
djcb
2012-12-22 22:54:50 +02:00
parent 4f37e979e1
commit c5f8ea6451
10 changed files with 14 additions and 12 deletions

View File

@ -432,8 +432,10 @@ mu_container_dump (MuContainer *c, gboolean recursive)
if (!recursive)
dump_container (c);
else
mu_container_foreach (c, (MuContainerForeachFunc)dump_container,
NULL);
mu_container_foreach
(c,
(MuContainerForeachFunc)dump_container,
NULL);
}