Skip to content

Commit

Permalink
Fix for 32bit systems
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn3 committed Nov 5, 2024
1 parent cf374b7 commit 9d4f1ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decompress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,7 @@ pub fn BZ2_decompress(strm: &mut bz_stream, s: &mut DState) -> ReturnCode {
}
s.state_out_len = 0;
s.state_out_ch = 0_u8;
s.calculatedBlockCRC = 0xffffffff as libc::c_long as u32;
s.calculatedBlockCRC = 0xffffffffu32;
s.state = State::BZ_X_OUTPUT;
if s.verbosity >= 2 {
eprint!("rt+rld");
Expand Down

0 comments on commit 9d4f1ce

Please sign in to comment.