From: ywu21 Date: Mon, 15 Dec 2008 01:58:19 +0000 (+0000) Subject: fix one bug in (EFIAPI *EFI_HII_ACCESS_FORM_CALLBACK)(), it is not aligned with spec X-Git-Tag: edk2-stable201903~19224 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=ed15fbe226f3cf0df0c0c264e38386b0c1a7bcf2 fix one bug in (EFIAPI *EFI_HII_ACCESS_FORM_CALLBACK)(), it is not aligned with spec the paramter should be IN EFI_BROWSER_ACTION *Action instead of IN EFI_BROWSER_ACTION Action git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7022 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/MdePkg/Include/Protocol/HiiConfigAccess.h b/MdePkg/Include/Protocol/HiiConfigAccess.h index 0f89f63808..211a5d1253 100644 --- a/MdePkg/Include/Protocol/HiiConfigAccess.h +++ b/MdePkg/Include/Protocol/HiiConfigAccess.h @@ -191,7 +191,7 @@ typedef EFI_STATUS (EFIAPI *EFI_HII_ACCESS_FORM_CALLBACK)( IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This, - IN EFI_BROWSER_ACTION Action, + IN EFI_BROWSER_ACTION *Action, IN EFI_QUESTION_ID QuestionId, IN UINT8 Type, IN EFI_IFR_TYPE_VALUE *Value,