From: Michael Tremer Date: Mon, 6 Jan 2025 21:40:26 +0000 (+0000) Subject: build: Fix order of arguments to set the arch X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bf93cc26f67f7929360df58da156024792cadb7e;p=people%2Fric9%2Fpakfire.git build: Fix order of arguments to set the arch Signed-off-by: Michael Tremer --- diff --git a/src/pakfire/build.c b/src/pakfire/build.c index f617f0b2a..47451bdcb 100644 --- a/src/pakfire/build.c +++ b/src/pakfire/build.c @@ -2009,7 +2009,7 @@ static int pakfire_build_setup_pakfire( flags |= PAKFIRE_USE_SNAPSHOT; // Create a new Pakfire instance - r = pakfire_create(&build->pakfire, build->ctx, config, arch, NULL, flags); + r = pakfire_create(&build->pakfire, build->ctx, config, NULL, arch, flags); if (r < 0) return r;