Fix join not working on join.c

This commit is contained in:
Quentin Legot
2023-05-04 22:19:00 +02:00
committed by François Autin
parent c6f5818059
commit 9bd0ef02aa
2 changed files with 13 additions and 23 deletions

View File

@ -35,7 +35,7 @@ struct Args {
/// 1 to enable machine debug,
/// 2 to enable system debug,
/// 3 to enable all debug
#[arg(short, long, value_parser = clap::value_parser!(u8).range(0..=3))]
#[arg(short, long, value_parser = clap::value_parser!(u8).range(0..=3), default_value_t = 0)]
debug: u8,
/// Path to the executable binary file to execute
#[arg(short = 'x', long, value_name = "PATH")]