diff options
author | Laszlo Ersek <lersek@redhat.com> | 2016-03-18 20:26:10 +0100 |
---|---|---|
committer | Hao Wu <hao.a.wu@intel.com> | 2016-07-14 15:51:27 +0800 |
commit | 5e30d3e8f2ef3d55b4a83686256f4a77f9261bd5 (patch) | |
tree | 9bb9b641a16c002c46118966a435fb83eebd9b61 | |
parent | 205a0eb0c1edfb41d8f460f17c48aab69f55a56a (diff) | |
download | edk2-platforms-5e30d3e8f2ef3d55b4a83686256f4a77f9261bd5.tar.xz |
MdeModulePkg: BootManagerMenuApp: remove set but unused variables
Cc: Feng Tian <feng.tian@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
Cc: Ruiyu Ni <ruiyu.ni@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Feng Tian <feng.tian@intel.com>
Reviewed-by: Jeff Fan <jeff.fan@intel.com>
(cherry picked from commit c1df8b889d4a9d8316d707e3ba8728f2628d5788)
-rw-r--r-- | MdeModulePkg/Application/BootManagerMenuApp/BootManagerMenu.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/MdeModulePkg/Application/BootManagerMenuApp/BootManagerMenu.c b/MdeModulePkg/Application/BootManagerMenuApp/BootManagerMenu.c index 9547c7eb5a..be1341061e 100644 --- a/MdeModulePkg/Application/BootManagerMenuApp/BootManagerMenu.c +++ b/MdeModulePkg/Application/BootManagerMenuApp/BootManagerMenu.c @@ -500,7 +500,6 @@ DrawBootPopupMenu ( EFI_STRING String;
UINTN Index;
UINTN Width;
- UINTN Height;
UINTN StartCol;
UINTN StartRow;
UINTN PrintRow;
@@ -514,7 +513,6 @@ DrawBootPopupMenu ( SavedAttribute = gST->ConOut->Mode->Attribute;
gST->ConOut->SetAttribute (gST->ConOut, EFI_WHITE | EFI_BACKGROUND_BLUE);
Width = BootMenuData->MenuScreen.Width;
- Height = BootMenuData->MenuScreen.Height;
StartCol = BootMenuData->MenuScreen.StartCol;
StartRow = BootMenuData->MenuScreen.StartRow;
ItemCountPerScreen = BootMenuData->ScrollBarControl.ItemCountPerScreen;
|