summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Jones <rjones@trick.home.annexia.org>2009-07-29 22:53:23 +0100
committerRichard Jones <rjones@trick.home.annexia.org>2009-07-29 22:53:23 +0100
commita9b5fc1e39350c36f78cc19e2f066a3c315c8751 (patch)
tree5bb88d4744ea8eef9d73803fa9ae7e50a2637cc9
parentf8f10578093e926f5f36289a6c11615d067fbcad (diff)
downloadlibguestfs-a9b5fc1e39350c36f78cc19e2f066a3c315c8751.tar.gz
libguestfs-a9b5fc1e39350c36f78cc19e2f066a3c315c8751.tar.xz
libguestfs-a9b5fc1e39350c36f78cc19e2f066a3c315c8751.zip
df: Fix alignment of columns.
-rwxr-xr-xdf/virt-df.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/df/virt-df.pl b/df/virt-df.pl
index 4cac896a..25fd6a82 100755
--- a/df/virt-df.pl
+++ b/df/virt-df.pl
@@ -287,7 +287,7 @@ sub print_cols
my $label = sprintf "%s:%s", $_[0], $_[1];
printf ("%-36s", $label);
- print "\n"," "x32 if length ($label) > 36;
+ print "\n"," "x36 if length ($label) > 36;
my $percent = sprintf "%3.1f%%", $_[5];
printf ("%10s %10s %10s %5s\n", $_[2], $_[3], $_[4], $percent);