OptionRomPkg: FrameBufferBltLib: drop set but not used variable

BltMemSrc is set in BltLibVideoFill(), but never read.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Olivier Martin <Olivier.Martin@arm.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16889 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Laszlo Ersek 2015-02-23 16:02:21 +00:00 committed by lersek
parent a8577b3a65
commit cef89a58ee
1 changed files with 0 additions and 2 deletions

View File

@ -236,7 +236,6 @@ BltLibVideoFill (
)
{
UINTN DstY;
VOID *BltMemSrc;
VOID *BltMemDst;
UINTN X;
UINT8 Uint8;
@ -347,7 +346,6 @@ BltLibVideoFill (
);
X = X + MIN (X, Width - X);
}
BltMemSrc = (VOID *) mBltLibLineBuffer;
LineBufferReady = TRUE;
}
CopyMem (BltMemDst, mBltLibLineBuffer, WidthInBytes);