diff options
author | Laszlo Ersek <lersek@redhat.com> | 2016-03-18 20:26:10 +0100 |
---|---|---|
committer | Laszlo Ersek <lersek@redhat.com> | 2016-03-25 10:52:24 +0100 |
commit | c1df8b889d4a9d8316d707e3ba8728f2628d5788 (patch) | |
tree | 71a5a9a591f4038c86888a7a0b6c2dfaa0b29652 | |
parent | 3a9dcf9f28ef6cd62c7eaade706adbe435262fa8 (diff) | |
download | edk2-platforms-c1df8b889d4a9d8316d707e3ba8728f2628d5788.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>
-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;
|