]> git.proxmox.com Git - mirror_edk2.git/commitdiff
MdeModulePkg/HiiDataBase: Fix incorrect local variable type
authorDandan Bi <dandan.bi@intel.com>
Mon, 26 Sep 2016 06:25:33 +0000 (14:25 +0800)
committerStar Zeng <star.zeng@intel.com>
Sat, 8 Oct 2016 02:19:46 +0000 (10:19 +0800)
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>
MdeModulePkg/Universal/HiiDatabaseDxe/ConfigRouting.c

index a97e28b8dd6090a49a8f888a677794a4f8cbfe59..d547f42f3a38464bdb1204bc50de6488fd26b1f1 100644 (file)
@@ -2103,7 +2103,7 @@ ParseIfrData (
   EFI_HII_PACKAGE_HEADER   *PackageHeader;\r
   EFI_VARSTORE_ID          VarStoreId;\r
   UINT16                   SmallestDefaultId;\r
-  UINT16                   SmallestIdFromFlag;\r
+  BOOLEAN                  SmallestIdFromFlag;\r
   BOOLEAN                  FromOtherDefaultOpcode;\r
 \r
   Status           = EFI_SUCCESS;\r