fixed compilation for VC6

svn-id: r6699
This commit is contained in:
Paweł Kołodziejski 2003-03-05 22:21:24 +00:00
parent c349bf123c
commit 9921273f18
2 changed files with 2 additions and 2 deletions

View file

@ -131,7 +131,7 @@ uint16 input_bits(uint8 amount)
remBits = ROR((uint16)(((1 << amount) - 1) & newBitBuffh), amount);
bit_buffh = newBitBuffh >> amount;
bit_buffl = (newBitBuffl >> amount) | remBits;
bit_count = newBitCount;
bit_count = (uint8)newBitCount;
return returnVal;