mirror of https://github.com/acidanthera/audk.git
OvmfPkg/SmbiosPlatformDxe: Fix Visual Studio build issue
Signed-off-by: jljusten git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12154 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
61403bd7ce
commit
fb11c13e5c
|
@ -44,8 +44,8 @@ GetXenSmbiosTables (
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (XenSmbiosPtr = (UINT8*) XEN_SMBIOS_PHYSICAL_ADDRESS;
|
for (XenSmbiosPtr = (UINT8*)(UINTN) XEN_SMBIOS_PHYSICAL_ADDRESS;
|
||||||
XenSmbiosPtr < (UINT8*) XEN_SMBIOS_PHYSICAL_END;
|
XenSmbiosPtr < (UINT8*)(UINTN) XEN_SMBIOS_PHYSICAL_END;
|
||||||
XenSmbiosPtr += 0x10) {
|
XenSmbiosPtr += 0x10) {
|
||||||
|
|
||||||
XenSmbiosEntryPointStructure = (SMBIOS_TABLE_ENTRY_POINT *) XenSmbiosPtr;
|
XenSmbiosEntryPointStructure = (SMBIOS_TABLE_ENTRY_POINT *) XenSmbiosPtr;
|
||||||
|
|
Loading…
Reference in New Issue