From 7ef76906acc51310890dd677201d9807a7fec63d Mon Sep 17 00:00:00 2001 From: lgao4 Date: Tue, 7 Apr 2009 07:59:11 +0000 Subject: [PATCH] Correct minor error. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8030 6f19259b-4bc3-4df7-8a09-765794883524 --- MdeModulePkg/Application/PlatOverMngr/PlatOverMngr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MdeModulePkg/Application/PlatOverMngr/PlatOverMngr.c b/MdeModulePkg/Application/PlatOverMngr/PlatOverMngr.c index 2ab82d25a2..d9a530296e 100644 --- a/MdeModulePkg/Application/PlatOverMngr/PlatOverMngr.c +++ b/MdeModulePkg/Application/PlatOverMngr/PlatOverMngr.c @@ -1268,7 +1268,7 @@ PlatOverMngrCallback ( if (KeyValue == KEY_VALUE_ORDER_SAVE_AND_EXIT) { Status = CommintChanges (Private, KeyValue, FakeNvData); *ActionRequest = EFI_BROWSER_ACTION_REQUEST_SUBMIT; - if (!EFI_ERROR (Status)) { + if (EFI_ERROR (Status)) { CreatePopUp (EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE, &Key, L"Single Override Info too large, Saving Error!", NULL); return EFI_DEVICE_ERROR; } -- 2.39.2