From 63393404f73a36a5d93034e224acf813fde964a1 Mon Sep 17 00:00:00 2001 From: "Song, BinX" Date: Fri, 10 Nov 2017 12:11:23 +0800 Subject: [PATCH] NetworkPkg: Fix MSFT C4255 warning V2: Fix MSFT C4255 warning V1: Enable MSFT C4255 warning. From MSDN: Compiler Warning (level 4) C4255 function' : no function prototype given: converting '()' to '(void)' The compiler did not find an explicit list of arguments to a function. This warning is for the C compiler only. Cc: Liming Gao Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Bell Song Reviewed-by: Liming Gao --- NetworkPkg/IScsiDxe/IScsiDriver.c | 1 + 1 file changed, 1 insertion(+) diff --git a/NetworkPkg/IScsiDxe/IScsiDriver.c b/NetworkPkg/IScsiDxe/IScsiDriver.c index fbeef970ba..a0ece3ae1f 100644 --- a/NetworkPkg/IScsiDxe/IScsiDriver.c +++ b/NetworkPkg/IScsiDxe/IScsiDriver.c @@ -87,6 +87,7 @@ IScsiIsDevicePathSupported ( **/ EFI_STATUS IScsiCheckAip ( + VOID ) { UINTN AipHandleCount; -- 2.39.2