Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
vinc committed Mar 9, 2023
1 parent c19673b commit 8c22d5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/protocols/xboard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ impl XBoard {
}

fn cmd_level(&mut self, args: &[&str]) {
let mut moves = args[1].parse::<u16>().unwrap();
let moves = args[1].parse::<u16>().unwrap();

// `time` is given in `mm:ss` or `ss`.
let time = match args[2].find(':') {
Expand Down

0 comments on commit 8c22d5c

Please sign in to comment.