From 73a3fefe828f4f42b0209127e113ea1f0d053c5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marvin=20H=C3=A4user?= Date: Tue, 27 Feb 2018 23:06:52 +0100 Subject: MinPlatformPkg/PeiLib: Add a missing cast to VOID **. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Marvin Haeuser Reviewed-by: Jiewen Yao --- Platform/Intel/MinPlatformPkg/Library/PeiLib/PeiLib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Platform/Intel/MinPlatformPkg/Library/PeiLib/PeiLib.c b/Platform/Intel/MinPlatformPkg/Library/PeiLib/PeiLib.c index 96bf91c408..22b19df832 100644 --- a/Platform/Intel/MinPlatformPkg/Library/PeiLib/PeiLib.c +++ b/Platform/Intel/MinPlatformPkg/Library/PeiLib/PeiLib.c @@ -59,7 +59,7 @@ PeiGetVariable ( &gEfiPeiReadOnlyVariable2PpiGuid, 0, NULL, - &VariableServices + (VOID **)&VariableServices ); ASSERT_EFI_ERROR (Status); if (EFI_ERROR(Status)) { -- cgit v1.2.3