File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ static BrotliDecoderErrorCode BROTLI_NOINLINE DecodeMetaBlockLength(
275
275
s -> loop_counter = i ;
276
276
return BROTLI_DECODER_NEEDS_MORE_INPUT ;
277
277
}
278
- if (i + 1 == s -> size_nibbles && s -> size_nibbles > 4 && bits == 0 ) {
278
+ if (i + 1 == ( int ) s -> size_nibbles && s -> size_nibbles > 4 && bits == 0 ) {
279
279
return BROTLI_FAILURE (BROTLI_DECODER_ERROR_FORMAT_EXUBERANT_NIBBLE );
280
280
}
281
281
s -> meta_block_remaining_len |= (int )(bits << (i * 4 ));
@@ -324,7 +324,7 @@ static BrotliDecoderErrorCode BROTLI_NOINLINE DecodeMetaBlockLength(
324
324
s -> loop_counter = i ;
325
325
return BROTLI_DECODER_NEEDS_MORE_INPUT ;
326
326
}
327
- if (i + 1 == s -> size_nibbles && s -> size_nibbles > 1 && bits == 0 ) {
327
+ if (i + 1 == ( int ) s -> size_nibbles && s -> size_nibbles > 1 && bits == 0 ) {
328
328
return BROTLI_FAILURE (
329
329
BROTLI_DECODER_ERROR_FORMAT_EXUBERANT_META_NIBBLE );
330
330
}
You can’t perform that action at this time.
0 commit comments