From: vanjeff Date: Fri, 19 May 2006 09:47:53 +0000 (+0000) Subject: Finish bug at line 324: X-Git-Tag: edk2-stable201903~25480 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=d3d867787c5c1fa131ed1f96bf009e36802a80e2 Finish bug at line 324: gBS->LocateProtocol (Handle, Guid, &Instance) error git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@201 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/MdePkg/Include/Library/DebugLib.h b/MdePkg/Include/Library/DebugLib.h index 4d41c190a0..e249e57925 100644 --- a/MdePkg/Include/Library/DebugLib.h +++ b/MdePkg/Include/Library/DebugLib.h @@ -321,7 +321,7 @@ DebugClearMemoryEnabled ( _ASSERT (Guid already installed in database); \ } \ } else { \ - if (!EFI_ERROR (gBS->LocateProtocol (Handle, Guid, &Instance))) { \ + if (!EFI_ERROR (gBS->LocateProtocol (Guid, Handle, &Instance))) { \ _ASSERT (Guid already installed on Handle); \ } \ } \