mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[BOOTVID] Don't increment an uninitialized and unused variable, bug #5103
svn path=/trunk/; revision=47409
This commit is contained in:
parent
f435dab493
commit
c60e69763c
1 changed files with 1 additions and 1 deletions
|
@ -155,7 +155,7 @@ VgaInterpretCmdStream(IN PUSHORT CmdStream)
|
|||
if (!ShortValue) continue;
|
||||
|
||||
/* Loop the cmd array */
|
||||
for (; Count; Count--, CmdStream++, Value++)
|
||||
for (; Count; Count--, CmdStream++)
|
||||
{
|
||||
/* Get the byte we're writing */
|
||||
ShortValue += (*CmdStream) << 8;
|
||||
|
|
Loading…
Reference in a new issue