From c46db6c0a2c9d047f8136ea8ef2c28f002324462 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 9 Apr 2020 20:03:19 +0200 Subject: [PATCH] bootctl: fix assert issue Follow-up for b46c3e4913f7f234039ebd8104446450917cab8d --- src/boot/bootctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c index 1a2ea0ae65..1fa6773db5 100644 --- a/src/boot/bootctl.c +++ b/src/boot/bootctl.c @@ -1006,7 +1006,7 @@ static int install_loader_config(const char *esp_path, sd_id128_t machine_id) { if (r < 0) return log_error_errno(r, "Failed to write \"%s\": %m", p); - r = link_tmpfile(fd, t, p); + r = link_tmpfile(fileno(f), t, p); if (r == -EEXIST) return 0; /* Silently skip creation if the file exists now (recheck) */ if (r < 0)