From af47866f76ecedeee355bdeed7f83d5466329b93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Mon, 19 Jun 2023 20:38:18 +0200 Subject: [PATCH] [FREELDR:UEFI] Fix compilation warning LNK4006. ntoskrnl.c.obj : warning LNK4006: _KeStallExecutionProcessor@4 already defined in stubs.c.obj; second definition ignored. --- boot/freeldr/freeldr/arch/uefi/stubs.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/boot/freeldr/freeldr/arch/uefi/stubs.c b/boot/freeldr/freeldr/arch/uefi/stubs.c index 513f9f8f85d..48b436bd68d 100644 --- a/boot/freeldr/freeldr/arch/uefi/stubs.c +++ b/boot/freeldr/freeldr/arch/uefi/stubs.c @@ -24,13 +24,6 @@ StallExecutionProcessor(ULONG Microseconds) } -VOID -NTAPI -KeStallExecutionProcessor(ULONG Microseconds) -{ - StallExecutionProcessor(Microseconds); -} - VOID UefiVideoGetFontsFromFirmware(PULONG RomFontPointers) {