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:
jljusten 2008-04-11 23:31:48 +00:00
parent 02d99367c7
commit e1a09a0eaa
1 changed files with 2 additions and 1 deletions

View File

@ -337,7 +337,8 @@ Returns:
}
while (Index <= 16) {
Weight[Index++] = (UINT16) (1U << (16 - Index));
Weight[Index] = (UINT16) (1U << (16 - Index));
Index++;
}
Index = (UINT16) (Start[TableBits + 1] >> JuBits);