From 63e78d5254338fe4b622e3037d1291af9dcb6198 Mon Sep 17 00:00:00 2001 From: andrewfish Date: Sat, 4 Jun 2011 22:27:37 +0000 Subject: Fix X64 clang warnings. Reviewed by: Rui Sun Approved by: Rui Sun git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11753 6f19259b-4bc3-4df7-8a09-765794883524 --- MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'MdeModulePkg/Core/Pei') diff --git a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c index 13dff91..edec580 100644 --- a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c +++ b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c @@ -779,7 +779,7 @@ PeiDispatcher ( ); } - if ((Status == EFI_SUCCESS)) { + if (Status == EFI_SUCCESS) { // // The PEIM has its dependencies satisfied, and its entry point // has been found, so invoke it. -- cgit v1.1