mirror of
https://github.com/google/brotli.git
synced 2024-11-22 03:30:07 +00:00
Fix 32bit build.
This commit is contained in:
parent
7c277c3ef7
commit
f3e71e441e
@ -231,7 +231,7 @@ static BROTLI_INLINE uint32_t BrotliReadBits(
|
||||
if ((32 - br->bit_pos_) < ((uint32_t) n_bits)) {
|
||||
BrotliFillBitWindow(br);
|
||||
}
|
||||
val = (br->val_ >> br->bit_pos_) & Bitmask(n_bits);
|
||||
val = (br->val_ >> br->bit_pos_) & BitMask(n_bits);
|
||||
#endif /* BROTLI_USE_64_BITS */
|
||||
#ifdef BROTLI_DECODE_DEBUG
|
||||
printf("[BrotliReadBits] %010d %2d val: %6x\n",
|
||||
|
Loading…
Reference in New Issue
Block a user