diff options
author | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-06-04 22:27:37 +0000 |
---|---|---|
committer | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-06-04 22:27:37 +0000 |
commit | 63e78d5254338fe4b622e3037d1291af9dcb6198 (patch) | |
tree | da27762582330776174e9fe88ee70ac8e64cef4c /MdeModulePkg/Core | |
parent | ae69c0473611cd817ca8668db949801307e45dad (diff) | |
download | edk2-platforms-63e78d5254338fe4b622e3037d1291af9dcb6198.tar.xz |
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
Diffstat (limited to 'MdeModulePkg/Core')
-rw-r--r-- | MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c index 13dff912ad..edec580b1f 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.
|