Fix typo on qemu_launcher options help message (#1816)

This commit is contained in:
Rubens Brandão 2024-01-25 09:50:20 -03:00 committed by GitHub
parent e117b7199c
commit 59945fbcc9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -48,10 +48,10 @@ pub struct FuzzerOptions {
#[arg(long, help = "Cpu cores to use", default_value = "all", value_parser = Cores::from_cmdline)]
pub cores: Cores,
#[arg(long, help = "Cpu cores to use to use for ASAN", value_parser = Cores::from_cmdline)]
#[arg(long, help = "Cpu cores to use for ASAN", value_parser = Cores::from_cmdline)]
pub asan_cores: Option<Cores>,
#[arg(long, help = "Cpu cores to use to use for CmpLog", value_parser = Cores::from_cmdline)]
#[arg(long, help = "Cpu cores to use for CmpLog", value_parser = Cores::from_cmdline)]
pub cmplog_cores: Option<Cores>,
#[clap(short, long, help = "Enable output from the fuzzer clients")]