diff --git a/main.c b/main.c index 441e10b..19d21d0 100644 --- a/main.c +++ b/main.c @@ -309,6 +309,7 @@ apply_cflags(pkg_t *world, void *list_head, int maxdepth, unsigned int flags) pkg_fragment_t *list; unsigned int eflags = PKG_ERRF_OK; + printf(" "); list = pkg_cflags(world, head, maxdepth, flags | PKGF_SEARCH_PRIVATE, &eflags); if (list == NULL) return eflags == PKG_ERRF_OK ? true : false; @@ -326,6 +327,7 @@ apply_libs(pkg_t *world, void *list_head, int maxdepth, unsigned int flags) pkg_fragment_t *list; unsigned int eflags = PKG_ERRF_OK; + printf(" "); list = pkg_libs(world, head, maxdepth, flags, &eflags); if (list == NULL) return eflags == PKG_ERRF_OK ? true : false;