Skip to content

Commit 920d0b2

Browse files
committed
fix: missing mut
1 parent f0e3164 commit 920d0b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/scrzebra/src/scrzebra.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ pub type Board = [i32; 128];
5656
unsafe fn run_endgame_script(mut in_file_name: *const i8,
5757
mut out_file_name: *const i8,
5858
mut display_line: i32,
59-
g_state: &mut FullState, thor: LegacyThor) {
59+
g_state: &mut FullState, mut thor: LegacyThor) {
6060
let mut script_nodes = CounterType { hi: 0, lo: 0 };
6161
let mut eval_info = EvaluationType::new();
6262
let mut comment = 0 as *mut i8;

0 commit comments

Comments
 (0)