From e0ce5641a3512d6f93fe9eb80192645b04ad7b33 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Fri, 13 Nov 2015 16:28:59 +0100 Subject: [PATCH] lib/repo_pkgdeps.c: add missing \n in debug printfs. --- lib/repo_pkgdeps.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/repo_pkgdeps.c b/lib/repo_pkgdeps.c index 1f864306..6d09f713 100644 --- a/lib/repo_pkgdeps.c +++ b/lib/repo_pkgdeps.c @@ -238,6 +238,7 @@ find_repo_deps(struct xbps_handle *xhp, if (xbps_dictionary_get(curpkgd, "hold")) { xbps_dbg_printf_append(xhp, " on hold state! ignoring package.\n"); } else { + xbps_dbg_printf_append(xhp, "\n"); reason = "install"; } } else { @@ -245,6 +246,7 @@ find_repo_deps(struct xbps_handle *xhp, if (xbps_dictionary_get(curpkgd, "hold")) { xbps_dbg_printf_append(xhp, " on hold state! ignoring package.\n"); } else { + xbps_dbg_printf_append(xhp, "\n"); reason = "update"; } }