From: Christian Storm <
christi...@siemens.com>
The ExitDataSize (2nd) and ExitData (3rd) arguments
to BS->StartImage() are pointers, so use NULL.
Signed-off-by: Christian Storm <
christi...@siemens.com>
---
main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/main.c b/main.c
index 4c6eeb4..7949218 100644
--- a/main.c
+++ b/main.c
@@ -195,5 +195,5 @@ EFI_STATUS efi_main(EFI_HANDLE image_handle, EFI_SYSTEM_TABLE *system_table)
INFO(L"Starting %s with watchdog set to %d seconds ...\n",
bg_loader_params.payload_path, bg_loader_params.timeout);
- return uefi_call_wrapper(BS->StartImage, 3, payload_handle, 0, 0);
+ return uefi_call_wrapper(BS->StartImage, 3, payload_handle, NULL, NULL);
}
--
2.30.0