]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
bootctl: fix unclosed quote in debug log
authorJoaquim Monteiro <joaquim.monteiro@protonmail.com>
Sat, 31 May 2025 18:56:28 +0000 (19:56 +0100)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 1 Jun 2025 02:34:17 +0000 (11:34 +0900)
src/bootctl/bootctl-install.c

index 816a4c8ac0fa406232f16c774630f630b63446c2..2099f42ae8063dd6eb4fbbe381cb2c37d2f53cbd 100644 (file)
@@ -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);