We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b8f231 commit c9cf60cCopy full SHA for c9cf60c
1 file changed
src/uu/lscpu/src/lscpu.rs
@@ -14,9 +14,9 @@ const USAGE: &str = help_usage!("lscpu.md");
14
15
#[uucore::main]
16
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
17
- let _matches: clap::ArgMatches = uu_app().try_get_matches_from(args)?;
+ let matches: clap::ArgMatches = uu_app().try_get_matches_from(args)?;
18
let system = System::new_all();
19
- let hex = _matches.get_flag(options::HEX);
+ let hex = matches.get_flag(options::HEX);
20
21
println!("Architecture: {}", get_architecture());
22
if hex {
0 commit comments