xbps_init: fix typo in debug output.

For #264
This commit is contained in:
Juan RP 2020-04-20 20:20:29 +02:00
parent 07d8735db6
commit d5251a9c23
No known key found for this signature in database
GPG Key ID: AF19F6CB482F9368

View File

@ -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;