Fix panic with debug assertions turned on due to short argument clash

This commit is contained in:
dasha_uwu
2026-02-01 10:54:22 +05:00
committed by Jason Volk
parent 024c08f795
commit 707dc74127

View File

@@ -90,10 +90,10 @@ pub(super) enum MediaCommand {
#[arg(short, long, default_value("10000"))] #[arg(short, long, default_value("10000"))]
timeout: u32, timeout: u32,
#[arg(short, long, default_value("800"))] #[arg(long, default_value("800"))]
width: u32, width: u32,
#[arg(short, long, default_value("800"))] #[arg(long, default_value("800"))]
height: u32, height: u32,
}, },
} }