OvmfPkg/AcpiPlatformDxe: Fix VS2012 IA32 build warning

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16170 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Jordan Justen 2014-09-25 02:29:00 +00:00 committed by jljusten
parent e0ba625fc6
commit ce88384500
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/** @file /** @file
OVMF ACPI QEMU support OVMF ACPI QEMU support
Copyright (c) 2008 - 2012, Intel Corporation. All rights reserved.<BR> Copyright (c) 2008 - 2014, Intel Corporation. All rights reserved.<BR>
Copyright (C) 2012-2014, Red Hat, Inc. Copyright (C) 2012-2014, Red Hat, Inc.
@ -943,7 +943,7 @@ Process2ndPassCmdAddPointer (
Blob2Remaining += Blob2->Size; Blob2Remaining += Blob2->Size;
ASSERT (PointerValue < Blob2Remaining); ASSERT (PointerValue < Blob2Remaining);
Blob2Remaining -= PointerValue; Blob2Remaining -= (UINTN) PointerValue;
DEBUG ((EFI_D_VERBOSE, "%a: checking for ACPI header in \"%a\" at 0x%Lx " DEBUG ((EFI_D_VERBOSE, "%a: checking for ACPI header in \"%a\" at 0x%Lx "
"(remaining: 0x%Lx): ", __FUNCTION__, AddPointer->PointeeFile, "(remaining: 0x%Lx): ", __FUNCTION__, AddPointer->PointeeFile,
PointerValue, (UINT64)Blob2Remaining)); PointerValue, (UINT64)Blob2Remaining));