]> git.proxmox.com Git - mirror_edk2.git/commitdiff
MdeModulePkg: BOOLEAN type needn't to compare to TRUE/FALSE explicitly
authorDandan Bi <dandan.bi@intel.com>
Tue, 26 Apr 2016 08:17:11 +0000 (16:17 +0800)
committerStar Zeng <star.zeng@intel.com>
Wed, 27 Apr 2016 08:39:46 +0000 (16:39 +0800)
Fix this issue to follow the coding style.

Cc: Qiu Shumin <shumin.qiu@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: Qiu Shumin <shumin.qiu@intel.com>
MdeModulePkg/Universal/HiiDatabaseDxe/ConfigRouting.c

index 24b6b24536071763f5f08df3caf1f180b7e50be1..cc155ccc61c9780b8c8605101401406240f99a3c 100644 (file)
@@ -939,7 +939,7 @@ CompareAndMergeDefaultString (
   //\r
   // If the ConfigAltResp has no change,no need to update the content in AltCfgResp.\r
   //\r
-  if (ConfigAltRespChanged == FALSE) {\r
+  if (!ConfigAltRespChanged) {\r
     Status = EFI_SUCCESS;\r
     goto Exit;\r
   }\r