Add padding between table and summary to match util-linux

This commit is contained in:
Foorack 2025-02-08 17:06:19 +01:00
parent 3eec3abef9
commit 34d22a8b50

@ -609,6 +609,11 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
}
}
// Padding line between table and summary if both are shown
if opts.want_table && opts.want_summary {
println!();
}
if opts.want_summary {
print_summary(&lsmem, &opts);
}