From 3bc63545500a04491ad56284b4190ac5459213f8 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Mon, 2 Feb 2015 09:37:34 +0100 Subject: [PATCH] lib/repo_pkgdeps.c: fix some debug printfs. --- lib/repo_pkgdeps.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/repo_pkgdeps.c b/lib/repo_pkgdeps.c index 96f20c36..643cd904 100644 --- a/lib/repo_pkgdeps.c +++ b/lib/repo_pkgdeps.c @@ -293,14 +293,14 @@ find_repo_deps(struct xbps_handle *xhp, } rv = add_missing_reqdep(xhp, reqpkg); if (rv != 0 && rv != EEXIST) { - xbps_dbg_printf_append(xhp, "`%s': add_missing_reqdep failed %s\n", reqpkg); + xbps_dbg_printf(xhp, "`%s': add_missing_reqdep failed %s\n", reqpkg); break; } else if (rv == EEXIST) { - xbps_dbg_printf_append(xhp, "`%s' missing dep already added.\n", reqpkg); + xbps_dbg_printf(xhp, "`%s' missing dep already added.\n", reqpkg); rv = 0; continue; } else { - xbps_dbg_printf_append(xhp, "`%s' added into the missing deps array.\n", reqpkg); + xbps_dbg_printf(xhp, "`%s' added into the missing deps array.\n", reqpkg); continue; } }