mirror of https://github.com/acidanthera/audk.git
IntelFrameworkModulePkg: Fix clang compielr warning.
Clang complains about if (()) constructs as it thinks you may be doing a compare and assign in the same if structure. signed-off-by: vanjeff git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11923 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
1a08be52c6
commit
5817d50862
|
@ -946,7 +946,7 @@ SetupResetReminder (
|
|||
//
|
||||
// If the user hits the YES Response key, reset
|
||||
//
|
||||
if ((Key.UnicodeChar == CHAR_CARRIAGE_RETURN)) {
|
||||
if (Key.UnicodeChar == CHAR_CARRIAGE_RETURN) {
|
||||
gRT->ResetSystem (EfiResetCold, EFI_SUCCESS, 0, NULL);
|
||||
}
|
||||
gST->ConOut->ClearScreen (gST->ConOut);
|
||||
|
|
Loading…
Reference in New Issue