mirror of https://github.com/acidanthera/audk.git
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:
parent
a8577b3a65
commit
cef89a58ee
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue