Skip to content

Commit

Permalink
Small UI fixes
Browse files Browse the repository at this point in the history
- Would fail to print if there are ESRT entries but not the ones we're
  looking for
- Wrong name BIOS->System.

Signed-off-by: Daniel Schaefer <[email protected]>
  • Loading branch information
JohnAZoidberg committed Oct 18, 2023
1 parent 1e6095c commit b56b61d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions framework_lib/src/commandline/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,8 @@ fn print_versions(ec: &CrosEc) {
_ => {}
}
}
} else if !found_retimer {
}
if !found_retimer {
println!(" Unknown");
}

Expand Down Expand Up @@ -712,7 +713,7 @@ fn smbios_info() {
}
}
DefinedStruct::SystemInformation(data) => {
println!("BIOS Information");
println!("System Information");
if let Some(version) = dmidecode_string_val(&data.version()) {
println!(" Version: {}", version);
}
Expand Down

0 comments on commit b56b61d

Please sign in to comment.