Fix --num-nodes argument parsing

This commit is contained in:
Michael Vines 2018-09-07 12:08:37 -07:00 committed by Grimes
parent 71a617b4dc
commit 4b47abd3bf
1 changed files with 1 additions and 1 deletions

View File

@ -486,7 +486,7 @@ fn main() {
threads = t.to_string().parse().expect("integer");
}
if let Some(n) = matches.value_of("num_nodes") {
if let Some(n) = matches.value_of("num-nodes") {
num_nodes = n.to_string().parse().expect("integer");
}