app/build-export: Fix gcc warning about too many arguments for printf

Drop the spurious final argument.

Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
Philip Withnall
2017-07-04 14:08:06 +01:00
parent 367c586862
commit 574f3692ec

View File

@@ -757,7 +757,7 @@ flatpak_builtin_build_export (int argc, char **argv, GCancellable *cancellable,
"Arch: %s\n"
"Branch: %s\n"
"Built with: "PACKAGE_STRING"\n",
id, arch, branch, NULL);
id, arch, branch);
full_branch = g_strconcat ((opt_runtime || is_runtime) ? "runtime/" : "app/", id, "/", arch, "/", branch, NULL);