From d5251a9c233eb26fc6dd1b4cc4e9c073192ba3f8 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Mon, 20 Apr 2020 20:20:29 +0200 Subject: [PATCH] xbps_init: fix typo in debug output. For #264 --- lib/initend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/initend.c b/lib/initend.c index d3b7e1d1..a991a851 100644 --- a/lib/initend.c +++ b/lib/initend.c @@ -157,7 +157,7 @@ xbps_init(struct xbps_handle *xhp) xbps_dbg_printf(xhp, "bestmatching=%s\n", xhp->flags & XBPS_FLAG_BESTMATCH ? "true" : "false"); xbps_dbg_printf(xhp, "keepconf=%s\n", xhp->flags & XBPS_FLAG_KEEP_CONFIG ? "true" : "false"); xbps_dbg_printf(xhp, "Architecture: %s\n", xhp->native_arch); - xbps_dbg_printf(xhp, "Target Architecture: %s\n", xhp->target_arch ? xhp->native_arch : "(null)"); + xbps_dbg_printf(xhp, "Target Architecture: %s\n", xhp->target_arch ? xhp->target_arch : "(null)"); if (xhp->flags & XBPS_FLAG_DEBUG) { const char *repodir;