diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-01-14 12:50:12 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-01-14 12:50:12 +0000 |
commit | 2f17ffce3c9e9e467894589b795b2221243955c9 (patch) | |
tree | bd0d2ff523bc3214f42d59ff020ed852bbcc61ec /UnixPkg | |
parent | de13f2451d0a05720d62792dc14f90bca51ba1b0 (diff) | |
download | edk2-platforms-2f17ffce3c9e9e467894589b795b2221243955c9.tar.xz |
Add type cast for PeiServices pointer
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7274 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'UnixPkg')
-rw-r--r-- | UnixPkg/UnixAutoScanPei/UnixAutoScan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/UnixPkg/UnixAutoScanPei/UnixAutoScan.c b/UnixPkg/UnixAutoScanPei/UnixAutoScan.c index 2a8969d8bf..e5faba1932 100644 --- a/UnixPkg/UnixAutoScanPei/UnixAutoScan.c +++ b/UnixPkg/UnixAutoScanPei/UnixAutoScan.c @@ -106,7 +106,7 @@ Returns: // For the first area register it as PEI tested memory
//
Status = MemoryTestPpi->BaseMemoryTest (
- PeiServices,
+ (EFI_PEI_SERVICES **) PeiServices,
MemoryTestPpi,
MemoryBase,
MemorySize,
|