1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

df: set min width of "Used" column to 5

This commit is contained in:
Daniel Hofstetter 2022-05-04 09:37:09 +02:00
parent a78f86a4f5
commit 9bd883169d

View file

@ -197,6 +197,7 @@ impl Column {
match column {
// 14 = length of "Filesystem" plus 4 spaces
Self::Source => 14,
Self::Used => 5,
// the shortest headers have a length of 4 chars so we use that as the minimum width
_ => 4,
}