From: Jan Kiszka <[email protected]> Inconsistency was noted by coverity.
Signed-off-by: Jan Kiszka <[email protected]> --- utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils.c b/utils.c index ace4689..9528bc5 100644 --- a/utils.c +++ b/utils.c @@ -52,8 +52,8 @@ BOOLEAN IsOnBootMedium(EFI_DEVICE_PATH *dp) void __attribute__((noreturn)) error_exit(CHAR16 *message, EFI_STATUS status) { ERROR(L"%s ( %r )\n", message, status); - uefi_call_wrapper(BS->Stall, 1, 3 * 1000 * 1000); - uefi_call_wrapper(BS->Exit, 4, this_image, status, 0, NULL); + (VOID)uefi_call_wrapper(BS->Stall, 1, 3 * 1000 * 1000); + (VOID)uefi_call_wrapper(BS->Exit, 4, this_image, status, 0, NULL); __builtin_unreachable(); } -- 2.26.2 -- You received this message because you are subscribed to the Google Groups "EFI Boot Guard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/efibootguard-dev/b6117211b8596059d0a40ce0f33c0c3a2adfb611.1611815602.git.jan.kiszka%40siemens.com.
