From af02003a415cfd93fcaf2ab8338ad478db4691d3 Mon Sep 17 00:00:00 2001 From: Bharadwaj Raju Date: Fri, 30 May 2025 15:00:43 +0530 Subject: [PATCH] syzbot-get: fix conflict in argument definitions Remove the short variant of --id and --idx since they conflict and cause syzbot-get to panic at runtime. In this repo we only use the long variants anyway, and I don't think it's used anywhere outside. --- src/bin/syzbot-get.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/syzbot-get.rs b/src/bin/syzbot-get.rs index 94d9e1bb..83e829d8 100644 --- a/src/bin/syzbot-get.rs +++ b/src/bin/syzbot-get.rs @@ -5,9 +5,9 @@ use serde_derive::Deserialize; #[derive(Parser)] #[command(author, version, about, long_about = None)] struct Args { - #[arg(short, long)] + #[arg(long)] id: String, - #[arg(short, long)] + #[arg(long)] idx: Option, #[arg(short, long)] output: PathBuf,