From c9e614eb256ec2591170c1b840558103dfa3d2b0 Mon Sep 17 00:00:00 2001 From: Joaquim Monteiro Date: Sat, 31 May 2025 19:56:28 +0100 Subject: [PATCH] bootctl: fix unclosed quote in debug log --- src/bootctl/bootctl-install.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.3