File: remove-unused-argument.patch

package info (click to toggle)
rust-asahi-wifisync 0.2.2-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 140 kB
  • sloc: makefile: 4
file content (17 lines) | stat: -rw-r--r-- 643 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: Remove non-existent argument from help
Author: Sasha Finkelstein <fnkl.kernel@gmail.com>
Applied-Upstream: db7719d110d99e0ef8fb23a99f1ff9f6ff4bcb8d
Reviewed-by: NoisyCoil <noisycoil@tutanota.com>
Last-Update: 2025-04-29
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/src/main.rs
+++ b/src/main.rs
@@ -53,7 +53,6 @@
             clap::Command::new("sync")
                 .about("Sync wlan information from nvram")
                 .arg(clap::arg!(-c --config [CONFIG] "IWD config path."))
-                .arg(clap::Arg::new("variable").multiple_values(true)),
         )
         .get_matches();