ksud: fmt & fix build

This commit is contained in:
ShirkNeko
2025-11-18 12:44:27 +08:00
parent 029ae8d389
commit 22cb7596a7
2 changed files with 3 additions and 9 deletions

View File

@@ -268,15 +268,12 @@ pub fn list_umount_paths() -> Result<()> {
return Ok(());
}
println!(
"{:<30} {:<12} {:<8} {:<10}",
"Path", "CheckMnt", "Flags", "Default"
);
println!("{:<30} {:<8} {:<10}", "Path", "Flags", "Default");
println!("{}", "=".repeat(60));
for entry in entries {
println!(
"{:<30} {:<12} {:<8} {:<10}",
"{:<30} {:<8} {:<10}",
entry.path,
entry.flags,
if entry.is_default { "Yes" } else { "No" }