diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-08-21 14:23:20 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-08-21 14:23:20 +0000 |
commit | d571173e31960b99802ebe89bf4963f1a38907d2 (patch) | |
tree | 897c3625ece3d62e9da70280d504d5a0e812baee /MdeModulePkg | |
parent | 98335d901be9cde5733a7fb334cc72580900bd6c (diff) | |
download | edk2-platforms-d571173e31960b99802ebe89bf4963f1a38907d2.tar.xz |
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
Diffstat (limited to 'MdeModulePkg')
-rw-r--r-- | MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) {
//
|