mirror of https://github.com/acidanthera/audk.git
Remove ambiguous auto-increment usage. (gcc warning)
(This code change is in sync with BaseTools TianoCompress code.) git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5057 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
02d99367c7
commit
e1a09a0eaa
|
@ -337,7 +337,8 @@ Returns:
|
||||||
}
|
}
|
||||||
|
|
||||||
while (Index <= 16) {
|
while (Index <= 16) {
|
||||||
Weight[Index++] = (UINT16) (1U << (16 - Index));
|
Weight[Index] = (UINT16) (1U << (16 - Index));
|
||||||
|
Index++;
|
||||||
}
|
}
|
||||||
|
|
||||||
Index = (UINT16) (Start[TableBits + 1] >> JuBits);
|
Index = (UINT16) (Start[TableBits + 1] >> JuBits);
|
||||||
|
|
Loading…
Reference in New Issue