Fix join not working on join.c

This commit is contained in:
Quentin Legot
2023-05-04 22:19:00 +02:00
parent a211e93905
commit 43f023e0b0
2 changed files with 13 additions and 23 deletions

View File

@ -34,7 +34,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")]