Skip to content

Commit

Permalink
Remove old thread limitation
Browse files Browse the repository at this point in the history
  • Loading branch information
JSKitty committed Oct 26, 2022
1 parent 831176d commit ef9caca
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 @@ -35,7 +35,7 @@ fn main() {
}

// VanityGen Threads: only needed if a target prefix is selected
if arg.starts_with("--threads=") && target.len() > 1 {
if arg.starts_with("--threads=") {
// User-set count OR system available_paralellism
threads = arg[10..].parse().unwrap_or(0);
}
Expand Down

0 comments on commit ef9caca

Please sign in to comment.