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
This commit is contained in:
qhuang8 2006-12-28 03:35:37 +00:00
parent af9e69ff19
commit f2df6a00a2
2 changed files with 2 additions and 2 deletions

View File

@ -109,7 +109,7 @@ EfiNamedEventListen (
IN EFI_TPL NotifyTpl,
IN EFI_EVENT_NOTIFY NotifyFunction,
IN CONST VOID *NotifyContext, OPTIONAL
OUT VOID *Registration OPTIONAL
OUT VOID **Registration
);
/**

View File

@ -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;