mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/UefiHiiLib: stop using EFI_HANDLE in place of EFI_HII_HANDLE
HiiGetHiiHandles() returns an array of EFI_HII_HANDLEs, not EFI_HANDLEs. HiiGetString() takes an EFI_HII_HANDLE, not an EFI_HANDLE. This change is a no-op in practice; it's a semantic improvement. Cc: Dandan Bi <dandan.bi@intel.com> Cc: Eric Dong <eric.dong@intel.com> Cc: Hao A Wu <hao.a.wu@intel.com> Cc: Jian J Wang <jian.j.wang@intel.com> Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Dandan Bi <dandan.bi@intel.com> Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com> Reviewed-by: Hao A Wu <hao.a.wu@intel.com>
This commit is contained in:
parent
3522ea73f9
commit
abf8f69ebf
|
@ -173,8 +173,8 @@ HiiGetPackageString (
|
|||
IN CONST CHAR8 *Language OPTIONAL
|
||||
)
|
||||
{
|
||||
EFI_HANDLE *HiiHandleBuffer;
|
||||
EFI_HANDLE HiiHandle;
|
||||
EFI_HII_HANDLE *HiiHandleBuffer;
|
||||
EFI_HII_HANDLE HiiHandle;
|
||||
|
||||
ASSERT (PackageListGuid != NULL);
|
||||
|
||||
|
|
Loading…
Reference in New Issue