From ff3badd83f9c89f90c262977ffc26a7b0c596241 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Mon, 26 Sep 2016 13:40:02 +0200 Subject: [PATCH] white space cleanups --- PVE/Storage.pm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/PVE/Storage.pm b/PVE/Storage.pm index ff43b17..a904f4e 100755 --- a/PVE/Storage.pm +++ b/PVE/Storage.pm @@ -1008,9 +1008,9 @@ sub storage_info { my $ids = $cfg->{ids}; my $info = {}; - + my @ctypes = PVE::Tools::split_list($content); - + my $slist = []; foreach my $storeid (keys %$ids) { @@ -1026,7 +1026,7 @@ sub storage_info { } next if !$want_ctype; } - + my $type = $ids->{$storeid}->{type}; $info->{$storeid} = { @@ -1059,9 +1059,9 @@ sub storage_info { eval { ($total, $avail, $used, $active) = $plugin->status($storeid, $scfg, $cache); }; warn $@ if $@; next if !$active; - $info->{$storeid}->{total} = int ($total); - $info->{$storeid}->{avail} = int ($avail); - $info->{$storeid}->{used} = int ($used); + $info->{$storeid}->{total} = int($total); + $info->{$storeid}->{avail} = int($avail); + $info->{$storeid}->{used} = int($used); $info->{$storeid}->{active} = $active; }