MdeModulePkg/DisplayEngineDxe: Remove unnecessary parentheses in 'if'

This commit removes unnecessary parentheses in 'if' statements to
resolve the build failures by the XCODE5 tool chain.

Cc: Eric Dong <eric.dong@intel.com>
Cc: Dandan Bi <dandan.bi@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Hao Wu <hao.a.wu@intel.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
Hao Wu 2017-12-05 13:13:07 +08:00
parent 856808065a
commit 2f808acc87
1 changed files with 1 additions and 1 deletions

View File

@ -686,7 +686,7 @@ CreatePopup (
}
gMessageString = HiiGetString (HiiHandle, Message, NULL);
if((gMessageString == NULL)) {
if(gMessageString == NULL) {
return EFI_INVALID_PARAMETER;
}