From: bxing Date: Mon, 10 Jul 2006 03:20:48 +0000 (+0000) Subject: Fixed a syntax error in BasePciCf8Lib/PciLib.c X-Git-Tag: edk2-stable201903~24999 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=003673f507cdc01edfb9f6af45094dad8ff09b36 Fixed a syntax error in BasePciCf8Lib/PciLib.c git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@852 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/MdePkg/Library/BasePciCf8Lib/PciLib.c b/MdePkg/Library/BasePciCf8Lib/PciLib.c index ca9b17abe2..cbbd407ead 100644 --- a/MdePkg/Library/BasePciCf8Lib/PciLib.c +++ b/MdePkg/Library/BasePciCf8Lib/PciLib.c @@ -1297,7 +1297,7 @@ PciCf8ReadBuffer ( { UINTN ReturnValue; - ASSERT_INVALID_PCI_ADDRESS (StartAddress); + ASSERT_INVALID_PCI_ADDRESS (StartAddress, 0); ASSERT (((StartAddress & 0xFFF) + Size) <= 0x100); if (Size == 0) { @@ -1396,7 +1396,7 @@ PciCf8WriteBuffer ( { UINTN ReturnValue; - ASSERT_INVALID_PCI_ADDRESS (StartAddress); + ASSERT_INVALID_PCI_ADDRESS (StartAddress, 0); ASSERT (((StartAddress & 0xFFF) + Size) <= 0x100); if (Size == 0) {