lscpu: remove underscore-prefix from var name

This commit is contained in:
Daniel Hofstetter
2025-01-29 17:05:01 +01:00
parent 9b8f231a5b
commit c9cf60cd7d

@ -14,9 +14,9 @@ const USAGE: &str = help_usage!("lscpu.md");
#[uucore::main] #[uucore::main]
pub fn uumain(args: impl uucore::Args) -> UResult<()> { pub fn uumain(args: impl uucore::Args) -> UResult<()> {
let _matches: clap::ArgMatches = uu_app().try_get_matches_from(args)?; let matches: clap::ArgMatches = uu_app().try_get_matches_from(args)?;
let system = System::new_all(); let system = System::new_all();
let hex = _matches.get_flag(options::HEX); let hex = matches.get_flag(options::HEX);
println!("Architecture: {}", get_architecture()); println!("Architecture: {}", get_architecture());
if hex { if hex {