MdeModulePkg: BOOLEAN type needn't to compare to TRUE/FALSE explicitly

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>
This commit is contained in:
Dandan Bi 2016-04-26 16:17:11 +08:00 committed by Star Zeng
parent 41a779e77f
commit e626a36c93
1 changed files with 1 additions and 1 deletions

View File

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