mirror of https://github.com/acidanthera/audk.git
Fix Xcode compile bug. It looks like these two arguments had an extra level of indirection that was in error. Good thing about extra compilers is we catch this kind of thing for almost free.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11491 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
2e3650d97d
commit
8ea50d2e4a
|
@ -426,7 +426,7 @@ SyncCacheConfig (
|
|||
} else if (TT_DESCRIPTOR_SECTION_TYPE_IS_PAGE_TABLE(FirstLevelTable[i])) {
|
||||
Status = SyncCacheConfigPage (
|
||||
i,FirstLevelTable[i],
|
||||
&NumberOfDescriptors, &MemorySpaceMap,
|
||||
NumberOfDescriptors, MemorySpaceMap,
|
||||
&NextRegionBase,&NextRegionLength,&NextSectionAttributes);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue