From: Joaquim Monteiro Date: Sat, 31 May 2025 18:56:28 +0000 (+0100) Subject: bootctl: fix unclosed quote in debug log X-Git-Tag: v258-rc1~431 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9e614eb256ec2591170c1b840558103dfa3d2b0;p=thirdparty%2Fsystemd.git bootctl: fix unclosed quote in debug log --- diff --git a/src/bootctl/bootctl-install.c b/src/bootctl/bootctl-install.c index 816a4c8ac0f..2099f42ae80 100644 --- a/src/bootctl/bootctl-install.c +++ b/src/bootctl/bootctl-install.c @@ -218,7 +218,7 @@ static int version_check(int fd_from, const char *from, int fd_to, const char *t "Skipping \"%s\", it's owned by another boot loader.", to); r = compare_version(a, b); - log_debug("Comparing versions: \"%s\" %s \"%s", a, comparison_operator(r), b); + log_debug("Comparing versions: \"%s\" %s \"%s\"", a, comparison_operator(r), b); if (r < 0) return log_warning_errno(SYNTHETIC_ERRNO(ESTALE), "Skipping \"%s\", newer boot loader version in place already.", to);