Skip to content

Commit

Permalink
free: fix align of -w flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Krysztal112233 committed Mar 21, 2024
1 parent 12a0088 commit 12ba6b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/uu/free/src/free.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
println!(" total used free shared buffers cache available");
match human {
true => println!(
"Mem: {:11} {:11} {:11} {:11} {:11} {:11} {:11}",
"Mem: {:11} {:11} {:11} {:11} {:11} {:11} {:11}",
to_human(mem_info.total),
to_human(used),
to_human(mem_info.free),
Expand All @@ -107,7 +107,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
to_human(mem_info.available)
),
false => println!(
"Mem: {:11} {:11} {:11} {:11} {:11} {:11} {:11}",
"Mem: {:11} {:11} {:11} {:11} {:11} {:11} {:11}",
mem_info.total,
used,
mem_info.free,
Expand All @@ -131,7 +131,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
to_human(mem_info.available)
),
false => println!(
"Mem: {:11} {:11} {:11} {:11} {:11} {:11}",
"Mem: {:11} {:11} {:11} {:11} {:11} {:11}",
mem_info.total,
used,
mem_info.free,
Expand Down

0 comments on commit 12ba6b1

Please sign in to comment.