Skip to content

Commit 28a6141

Browse files
committed
Oh clippy.
1 parent 9c31ab0 commit 28a6141

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ fn check_stacks() {
779779
let stack_end = unsafe { stack_start.add(1) } as *const usize;
780780
check_stack(
781781
stack_start,
782-
unsafe { stack_end.offset_from(stack_start) },
782+
unsafe { stack_end.offset_from(stack_start) } as usize,
783783
CORE1_STACK_PAINT_WORD,
784784
);
785785
}

0 commit comments

Comments
 (0)