From: lgao4 Date: Mon, 28 Nov 2011 06:14:31 +0000 (+0000) Subject: Update code to pass build on VS2008 with /Od compiler option. X-Git-Tag: edk2-stable201903~13825 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=a661e27f7aa3f8e197af3f4a61d5ac350c82aaa7;p=mirror_edk2.git Update code to pass build on VS2008 with /Od compiler option. Signed-off-by: lgao4 Reviewed-by: rsun3 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12791 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/IntelFrameworkModulePkg/Library/DxeCapsuleLib/DxeCapsuleLib.c b/IntelFrameworkModulePkg/Library/DxeCapsuleLib/DxeCapsuleLib.c index 12c72720f7..6f5ab5b0f5 100644 --- a/IntelFrameworkModulePkg/Library/DxeCapsuleLib/DxeCapsuleLib.c +++ b/IntelFrameworkModulePkg/Library/DxeCapsuleLib/DxeCapsuleLib.c @@ -108,7 +108,7 @@ ProcessCapsuleImage ( // // Allocate new aligned buffer to store FvImage. // - ProcessedFvImage = (EFI_FIRMWARE_VOLUME_HEADER *) AllocateAlignedPages ((UINTN) EFI_SIZE_TO_PAGES (FvImage->FvLength), (UINTN) FvAlignment); + ProcessedFvImage = (EFI_FIRMWARE_VOLUME_HEADER *) AllocateAlignedPages ((UINTN) EFI_SIZE_TO_PAGES ((UINTN) FvImage->FvLength), (UINTN) FvAlignment); if (ProcessedFvImage == NULL) { Status = EFI_OUT_OF_RESOURCES; break;