Skip to content

Commit

Permalink
Oh clippy.
Browse files Browse the repository at this point in the history
  • Loading branch information
thejpster committed Dec 16, 2024
1 parent 9c31ab0 commit 28a6141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ fn check_stacks() {
let stack_end = unsafe { stack_start.add(1) } as *const usize;
check_stack(
stack_start,
unsafe { stack_end.offset_from(stack_start) },
unsafe { stack_end.offset_from(stack_start) } as usize,
CORE1_STACK_PAINT_WORD,
);
}
Expand Down

0 comments on commit 28a6141

Please sign in to comment.