diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-12 17:30:21 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-12 17:30:21 +0000 |
commit | 24c28238e735b08ef8516783acca6144854f5ecf (patch) | |
tree | a86ece737e8ef8617cbded2e04bf5516fbc6a15f /Nt32Pkg/Library/PeiNt32PeCoffLib/PeiNt32PeCoffLib.c | |
parent | 5ead4a07a8bd2dc1604988a20d72c86963d66c51 (diff) | |
download | edk2-platforms-24c28238e735b08ef8516783acca6144854f5ecf.tar.xz |
Fix build issue for ICC compiler.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6105 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Nt32Pkg/Library/PeiNt32PeCoffLib/PeiNt32PeCoffLib.c')
-rw-r--r-- | Nt32Pkg/Library/PeiNt32PeCoffLib/PeiNt32PeCoffLib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Nt32Pkg/Library/PeiNt32PeCoffLib/PeiNt32PeCoffLib.c b/Nt32Pkg/Library/PeiNt32PeCoffLib/PeiNt32PeCoffLib.c index 6bfc630663..a1a2580a5b 100644 --- a/Nt32Pkg/Library/PeiNt32PeCoffLib/PeiNt32PeCoffLib.c +++ b/Nt32Pkg/Library/PeiNt32PeCoffLib/PeiNt32PeCoffLib.c @@ -64,11 +64,11 @@ PeiNt32PeCoffLibConstructor ( // GuidHob is not ready, try to locate PeCoffLoader guid structure.
//
Status = (*PeiServices)->LocatePpi (
- PeiServices,
+ (const EFI_PEI_SERVICES **)PeiServices,
&gEfiPeiPeCoffLoaderGuid,
0,
NULL,
- &mPeiEfiPeiPeCoffLoader
+ (VOID**)&mPeiEfiPeiPeCoffLoader
);
//
|