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:
Dandan Bi 2016-09-26 14:25:33 +08:00 committed by Star Zeng
parent 9381ad8701
commit 0cdde07113
1 changed files with 1 additions and 1 deletions

View File

@ -2103,7 +2103,7 @@ ParseIfrData (
EFI_HII_PACKAGE_HEADER *PackageHeader;
EFI_VARSTORE_ID VarStoreId;
UINT16 SmallestDefaultId;
UINT16 SmallestIdFromFlag;
BOOLEAN SmallestIdFromFlag;
BOOLEAN FromOtherDefaultOpcode;
Status = EFI_SUCCESS;