79350f79d8
Resolves: #2137584,#2138081,#2141979
26 lines
969 B
Diff
26 lines
969 B
Diff
From 2fdb15b3053d20282d7f3c20a7a4d2bd96d9a39b Mon Sep 17 00:00:00 2001
|
|
From: Jan Janssen <medhefgo@web.de>
|
|
Date: Sun, 13 Nov 2022 16:14:17 +0100
|
|
Subject: [PATCH] boot: Fix error message
|
|
|
|
(cherry picked from commit 6ee4aa22140dd8d51b1a18882eb4220629b8dd8f)
|
|
|
|
Related: #2138081
|
|
---
|
|
src/boot/efi/boot.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/boot/efi/boot.c b/src/boot/efi/boot.c
|
|
index 4150b16ecf..84f4cc11a3 100644
|
|
--- a/src/boot/efi/boot.c
|
|
+++ b/src/boot/efi/boot.c
|
|
@@ -2678,7 +2678,7 @@ EFI_STATUS efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *sys_table) {
|
|
|
|
err = device_path_to_str(loaded_image->FilePath, &loaded_image_path);
|
|
if (err != EFI_SUCCESS)
|
|
- return log_error_status_stall(err, L"Error getting loaded image path: %m");
|
|
+ return log_error_status_stall(err, L"Error getting loaded image path: %r", err);
|
|
|
|
export_variables(loaded_image, loaded_image_path, init_usec);
|
|
|