diff mbox

[edk2,1/2] MdeModulePkg/BootMaintenanceManagerUiLib: remove unused but set variable

Message ID 1463133042-3402-2-git-send-email-lersek@redhat.com
State Accepted
Commit 17da28f3e2451524ebf50b55ee302b5d0abdb98e
Headers show

Commit Message

Laszlo Ersek May 13, 2016, 9:50 a.m. UTC
As-is, the code triggers [-Werror=unused-but-set-variable] with GCC.

Cc: Eric Dong <eric.dong@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Fixes: a85be3ae48a8aaa40b755cd0ff7270c67cfed585
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>

---
 MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerCustomizedUiSupport.c | 2 --
 1 file changed, 2 deletions(-)

-- 
1.8.3.1


_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
diff mbox

Patch

diff --git a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerCustomizedUiSupport.c b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerCustomizedUiSupport.c
index b32cbdbf0003..177b2498d3ec 100644
--- a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerCustomizedUiSupport.c
+++ b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerCustomizedUiSupport.c
@@ -42,7 +42,6 @@  BmmCreateBootNextMenu(
   )
 {
   BM_MENU_ENTRY   *NewMenuEntry;
-  BM_LOAD_CONTEXT *NewLoadContext;
   UINTN           NumberOfOptions;
   UINT16          Index;
   VOID            *OptionsOpCodeHandle;
@@ -59,7 +58,6 @@  BmmCreateBootNextMenu(
 
   for (Index = 0; Index < BootOptionMenu.MenuNumber; Index++) {
     NewMenuEntry    = BOpt_GetMenuEntry (&BootOptionMenu, Index);
-    NewLoadContext  = (BM_LOAD_CONTEXT *) NewMenuEntry->VariableContext;
 
     StringBuffer = HiiGetString (HiiHandle, NewMenuEntry->DisplayStringToken, NULL);
     ASSERT (StringBuffer != NULL);