Skip to content

Commit

Permalink
bzip2recover.rs: remove casts IV
Browse files Browse the repository at this point in the history
  • Loading branch information
folkertdev committed Nov 7, 2024
1 parent cb99b1b commit 6d2ce3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bzip2recover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,8 @@ fn main_help(program_name: &Path, in_filename: &Path) -> Result<ExitCode, Error>
B_START[currBlock],
B_END[currBlock],
);
RB_START[rbCtr as usize] = B_START[currBlock];
RB_END[rbCtr as usize] = B_END[currBlock];
RB_START[rbCtr] = B_START[currBlock];
RB_END[rbCtr] = B_END[currBlock];
rbCtr += 1;
}
if currBlock >= BZ_MAX_HANDLED_BLOCKS {
Expand Down

0 comments on commit 6d2ce3f

Please sign in to comment.