From 3bc4df407543043e7953cc74ed5f4632f3e2171b Mon Sep 17 00:00:00 2001 From: Jeremy Smart Date: Sat, 25 May 2024 16:08:23 -0400 Subject: [PATCH] df: fix size column padding --- src/uu/df/src/columns.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/uu/df/src/columns.rs b/src/uu/df/src/columns.rs index 0659d7f7d..3c0a24419 100644 --- a/src/uu/df/src/columns.rs +++ b/src/uu/df/src/columns.rs @@ -201,6 +201,7 @@ impl Column { // 14 = length of "Filesystem" plus 4 spaces Self::Source => 14, Self::Used => 5, + Self::Size => 5, // the shortest headers have a length of 4 chars so we use that as the minimum width _ => 4, }