From f5bc9da5a3b36b73f5bff4b31f81ed7278f14ec1 Mon Sep 17 00:00:00 2001 From: Qiu Shumin Date: Tue, 23 Jun 2015 01:04:26 +0000 Subject: [PATCH] ShellPkg: Make BOOLEAN variable not use explicit comparison. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Qiu Shumin Reviewed-by: Jaben Carsey Reviewed-by: Daryl McDaniel git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17677 6f19259b-4bc3-4df7-8a09-765794883524 --- ShellPkg/Application/Shell/ConsoleLogger.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ShellPkg/Application/Shell/ConsoleLogger.c b/ShellPkg/Application/Shell/ConsoleLogger.c index 22abf55ccc..9b64303cf0 100644 --- a/ShellPkg/Application/Shell/ConsoleLogger.c +++ b/ShellPkg/Application/Shell/ConsoleLogger.c @@ -416,7 +416,7 @@ ConsoleLoggerReset ( // if (!EFI_ERROR (Status)) { ConsoleLoggerResetBuffers(ConsoleInfo); - if (ExtendedVerification == TRUE) { + if (ExtendedVerification) { ConsoleInfo->OriginalStartRow = 0; ConsoleInfo->CurrentStartRow = 0; } -- 2.39.2