From 8258c4e643132cbdff8b6343a6502d501d86a19a Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Fri, 14 Jun 2013 07:41:05 +0000 Subject: OvmfPkg/VirtioNetDxe: Fix build errors on VS2012 (IA32 & X64) These changes were needed in addition to the silence.patch that Laszlo posted on May 28. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen Signed-off-by: Laszlo Ersek git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14420 6f19259b-4bc3-4df7-8a09-765794883524 --- OvmfPkg/VirtioNetDxe/SnpGetStatus.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OvmfPkg/VirtioNetDxe/SnpGetStatus.c') diff --git a/OvmfPkg/VirtioNetDxe/SnpGetStatus.c b/OvmfPkg/VirtioNetDxe/SnpGetStatus.c index ce6a7295fe..eabcf93c4b 100644 --- a/OvmfPkg/VirtioNetDxe/SnpGetStatus.c +++ b/OvmfPkg/VirtioNetDxe/SnpGetStatus.c @@ -4,7 +4,7 @@ any. Copyright (C) 2013, Red Hat, Inc. - Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
+ Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this @@ -136,12 +136,12 @@ VirtioNetGetStatus ( UsedElemIdx = Dev->TxLastUsed++ % Dev->TxRing.QueueSize; DescIdx = Dev->TxRing.Used.UsedElem[UsedElemIdx].Id; - ASSERT (DescIdx < 2 * Dev->TxMaxPending - 1); + ASSERT (DescIdx < (UINT32) (2 * Dev->TxMaxPending - 1)); // // report buffer address to caller that has been enqueued by caller // - *TxBuf = (VOID *) Dev->TxRing.Desc[DescIdx + 1].Addr; + *TxBuf = (VOID *)(UINTN) Dev->TxRing.Desc[DescIdx + 1].Addr; // // now this descriptor can be used again to enqueue a transmit buffer -- cgit v1.2.3