diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-12-28 03:35:37 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-12-28 03:35:37 +0000 |
commit | f2df6a00a28508d9ed08f5564cbb21b7c0c9e19c (patch) | |
tree | a9d5b0c1787a570c619f1c7656c0ae0f1a227995 /MdePkg/Library | |
parent | af9e69ff1971ebe4216888ee31498dd1ba7d9b6f (diff) | |
download | edk2-platforms-f2df6a00a28508d9ed08f5564cbb21b7c0c9e19c.tar.xz |
Fix a typo in UefiLib. The parameter type of Registration should be "VOID **" instead of "VOID *".
No binary code is impacted.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2142 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library')
-rw-r--r-- | MdePkg/Library/UefiLib/UefiLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Library/UefiLib/UefiLib.c b/MdePkg/Library/UefiLib/UefiLib.c index 85fdc6ebe3..0ce36fce7b 100644 --- a/MdePkg/Library/UefiLib/UefiLib.c +++ b/MdePkg/Library/UefiLib/UefiLib.c @@ -93,7 +93,7 @@ EfiCreateProtocolNotifyEvent( IN EFI_TPL NotifyTpl,
IN EFI_EVENT_NOTIFY NotifyFunction,
IN VOID *NotifyContext, OPTIONAL
- OUT VOID *Registration
+ OUT VOID **Registration
)
{
EFI_STATUS Status;
|