From: qhuang8 Date: Thu, 28 Dec 2006 03:51:44 +0000 (+0000) Subject: Refix the previous issue. X-Git-Tag: edk2-stable201903~23734 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=13c84604475a77b7b90e79eddc77e88b7a01f504 Refix the previous issue. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2143 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/MdePkg/Include/Library/UefiLib.h b/MdePkg/Include/Library/UefiLib.h index 3098f57298..9eed35ba16 100644 --- a/MdePkg/Include/Library/UefiLib.h +++ b/MdePkg/Include/Library/UefiLib.h @@ -84,7 +84,7 @@ EfiCreateProtocolNotifyEvent( IN EFI_TPL NotifyTpl, IN EFI_EVENT_NOTIFY NotifyFunction, IN VOID *NotifyContext, OPTIONAL - OUT VOID *Registration + OUT VOID **Registration ); /** @@ -109,7 +109,7 @@ EfiNamedEventListen ( IN EFI_TPL NotifyTpl, IN EFI_EVENT_NOTIFY NotifyFunction, IN CONST VOID *NotifyContext, OPTIONAL - OUT VOID **Registration + OUT VOID *Registration OPTIONAL ); /** diff --git a/MdePkg/Library/UefiLib/UefiLib.c b/MdePkg/Library/UefiLib/UefiLib.c index 0ce36fce7b..e8883b49f8 100644 --- a/MdePkg/Library/UefiLib/UefiLib.c +++ b/MdePkg/Library/UefiLib/UefiLib.c @@ -155,7 +155,7 @@ EfiNamedEventListen ( IN EFI_TPL NotifyTpl, IN EFI_EVENT_NOTIFY NotifyFunction, IN CONST VOID *NotifyContext, OPTIONAL - OUT VOID *Registration OPTIONAL + OUT VOID *Registration OPTIONAL ) { EFI_STATUS Status;