From d571173e31960b99802ebe89bf4963f1a38907d2 Mon Sep 17 00:00:00 2001 From: lgao4 Date: Thu, 21 Aug 2008 14:23:20 +0000 Subject: [PATCH] Fix ICC build error for the inconsistent PeiService pointer date type. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5708 6f19259b-4bc3-4df7-8a09-765794883524 --- MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c index b83f0006e4..d31b72104f 100644 --- a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c +++ b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c @@ -350,7 +350,7 @@ PeiDispatcher ( // // Get this Fv Handle by PeiService FvFindNextVolume. // - PeiFvFindNextVolume (PeiServices, FvCount, &VolumeHandle); + PeiFvFindNextVolume ((CONST EFI_PEI_SERVICES **) PeiServices, FvCount, &VolumeHandle); if (Private->CurrentPeimCount == 0) { // -- 2.39.2