ShellPkg: Fixed build error 'variable set but not used'
GCC toolchain cannot build ShellPkg. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Harry Liebel <Harry.Liebel@arm.com> Signed-off-by: Olivier Martin <Olivier.Martin@arm.com> Reviewed-by: Jaben Carsey <Jaben.Carsey@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@14326 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -752,7 +752,6 @@ HBufferImageRefresh (
|
||||
UINTN StartRow;
|
||||
UINTN EndRow;
|
||||
UINTN FStartRow;
|
||||
UINTN FEndRow;
|
||||
UINTN Tmp;
|
||||
|
||||
Orig = HMainEditor.ColorAttributes;
|
||||
@ -821,7 +820,6 @@ HBufferImageRefresh (
|
||||
}
|
||||
|
||||
FStartRow = StartRow;
|
||||
FEndRow = EndRow;
|
||||
|
||||
StartRow = 2 + StartRow - HBufferImage.LowVisibleRow;
|
||||
EndRow = 2 + EndRow - HBufferImage.LowVisibleRow;
|
||||
@ -1750,14 +1748,11 @@ HBufferImagePageUp (
|
||||
VOID
|
||||
)
|
||||
{
|
||||
HEFI_EDITOR_LINE *Line;
|
||||
UINTN FRow;
|
||||
UINTN FCol;
|
||||
UINTN Gap;
|
||||
INTN Retreat;
|
||||
|
||||
Line = HBufferImage.CurrentLine;
|
||||
|
||||
FRow = HBufferImage.BufferPosition.Row;
|
||||
FCol = HBufferImage.BufferPosition.Column;
|
||||
|
||||
@ -1776,11 +1771,6 @@ HBufferImagePageUp (
|
||||
Retreat = Gap;
|
||||
Retreat = -Retreat;
|
||||
|
||||
//
|
||||
// get correct line
|
||||
//
|
||||
Line = HMoveLine (Retreat);
|
||||
|
||||
FRow -= Gap;
|
||||
|
||||
HBufferImageMovePosition (FRow, FCol, HBufferImage.HighBits);
|
||||
@ -1798,13 +1788,10 @@ HBufferImageHome (
|
||||
VOID
|
||||
)
|
||||
{
|
||||
HEFI_EDITOR_LINE *Line;
|
||||
UINTN FRow;
|
||||
UINTN FCol;
|
||||
BOOLEAN HighBits;
|
||||
|
||||
Line = HBufferImage.CurrentLine;
|
||||
|
||||
//
|
||||
// curosr will at the high bit
|
||||
//
|
||||
@ -1918,7 +1905,6 @@ HBufferImageDeleteCharacterFromBuffer (
|
||||
|
||||
HEFI_EDITOR_LINE *Line;
|
||||
LIST_ENTRY *Link;
|
||||
UINTN StartRow;
|
||||
|
||||
UINTN OldFCol;
|
||||
UINTN OldFRow;
|
||||
@ -1928,11 +1914,6 @@ HBufferImageDeleteCharacterFromBuffer (
|
||||
|
||||
EFI_STATUS Status;
|
||||
|
||||
//
|
||||
// get the line that start position is at
|
||||
//
|
||||
StartRow = Pos / 0x10;
|
||||
|
||||
Size = HBufferImageGetTotalSize ();
|
||||
|
||||
if (Size < Count) {
|
||||
@ -2054,7 +2035,6 @@ HBufferImageAddCharacterToBuffer (
|
||||
HEFI_EDITOR_LINE *Line;
|
||||
|
||||
LIST_ENTRY *Link;
|
||||
UINTN StartRow;
|
||||
|
||||
UINTN OldFCol;
|
||||
UINTN OldFRow;
|
||||
@ -2062,11 +2042,6 @@ HBufferImageAddCharacterToBuffer (
|
||||
|
||||
UINTN NewPos;
|
||||
|
||||
//
|
||||
// get the line that start position is at
|
||||
//
|
||||
StartRow = Pos / 0x10;
|
||||
|
||||
Size = HBufferImageGetTotalSize ();
|
||||
|
||||
//
|
||||
|
Reference in New Issue
Block a user