From bad6cb5ae8db5d03ded4c852d624014c8738cc7b Mon Sep 17 00:00:00 2001 From: David Tardon Date: Tue, 7 May 2024 13:16:30 +0200 Subject: [PATCH] bless-boot: pass the right error variable --- src/boot/bless-boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boot/bless-boot.c b/src/boot/bless-boot.c index 8e6c146e69b..f86d102f0be 100644 --- a/src/boot/bless-boot.c +++ b/src/boot/bless-boot.c @@ -469,7 +469,7 @@ static int verb_set(int argc, char *argv[], void *userdata) { /* First, fsync() the directory these files are located in */ r = fsync_parent_at(fd, skip_leading_slash(target)); if (r < 0) - log_debug_errno(errno, "Failed to synchronize image directory, ignoring: %m"); + log_debug_errno(r, "Failed to synchronize image directory, ignoring: %m"); /* Secondly, syncfs() the whole file system these files are located in */ if (syncfs(fd) < 0) -- 2.47.3