diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-19 09:47:53 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-19 09:47:53 +0000 |
commit | d3d867787c5c1fa131ed1f96bf009e36802a80e2 (patch) | |
tree | d263dcb476e1cce988a62de7414035398f141280 /MdePkg/Include | |
parent | 0df1e610850bf1d0f5192f952a9bf5c360de3146 (diff) | |
download | edk2-platforms-d3d867787c5c1fa131ed1f96bf009e36802a80e2.tar.xz |
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
Diffstat (limited to 'MdePkg/Include')
-rw-r--r-- | MdePkg/Include/Library/DebugLib.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); \
} \
} \
|