Skip to content

Commit

Permalink
liblzma: Silence a warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
Larhzu committed Feb 14, 2024
1 parent eeedd4d commit 160b686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/liblzma/rangecoder/range_decoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ do { \
uint32_t t0; \
uint32_t t1; \
uint32_t t_prob; \
uint32_t t_match_byte = (match_byte_value) << 1; \
uint32_t t_match_byte = (uint32_t)(match_byte_value) << 1; \
uint32_t t_match_bit = t_match_byte; \
uint32_t t_offset = 0x100; \
symbol = 1; \
Expand Down

0 comments on commit 160b686

Please sign in to comment.