mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/HiiDataBase: Fix incorrect local variable type
The type of variable "SmallestIdFromFlag" should be BOOLEAN, this patch fix the incorrect type. Cc: Liming Gao <liming.gao@intel.com> Cc: Eric Dong <eric.dong@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Dandan Bi <dandan.bi@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
9381ad8701
commit
0cdde07113
|
@ -2103,7 +2103,7 @@ ParseIfrData (
|
||||||
EFI_HII_PACKAGE_HEADER *PackageHeader;
|
EFI_HII_PACKAGE_HEADER *PackageHeader;
|
||||||
EFI_VARSTORE_ID VarStoreId;
|
EFI_VARSTORE_ID VarStoreId;
|
||||||
UINT16 SmallestDefaultId;
|
UINT16 SmallestDefaultId;
|
||||||
UINT16 SmallestIdFromFlag;
|
BOOLEAN SmallestIdFromFlag;
|
||||||
BOOLEAN FromOtherDefaultOpcode;
|
BOOLEAN FromOtherDefaultOpcode;
|
||||||
|
|
||||||
Status = EFI_SUCCESS;
|
Status = EFI_SUCCESS;
|
||||||
|
|
Loading…
Reference in New Issue