]> git.etc.gen.nz Git - mythtv-status.git/commitdiff
Minor adjustment to make code a bit more readable.
authorAndrew Ruthven <andrew@etc.gen.nz>
Sun, 31 Dec 2023 04:04:55 +0000 (17:04 +1300)
committerAndrew Ruthven <andrew@etc.gen.nz>
Wed, 1 Jan 2025 07:49:43 +0000 (20:49 +1300)
bin/mythtv-status

index c560c535d488a3dfe278e1cf0ed110c518d3b1c0..282696beef3d30c8224a1a49094f1d73d5d84759 100755 (executable)
@@ -89,17 +89,17 @@ $c->{'oneliner_bullets'} ||= 0;
 #
 my @size_thresholds = (
   {
-    'unit' => 'TB',
-    'threshold' => 1024 * 1024,
+    'unit'       => 'TB',
+    'threshold'  => 1024 * 1024,
     'conversion' => 1024 * 1024,
-    'make_integer' => 1,
+    'make_integer'           => 1,
     'make_integer_threshold' => 500,
   },
   {
-    'unit' => 'GB',
-    'threshold' => 50 * 1024,        # 50GB seems like a good threshold.
+    'unit'        => 'GB',
+    'threshold'  => 50 * 1024,        # 50GB seems like a good threshold.
     'conversion' => 1024,
-    'make_integer' => 1,
+    'make_integer'           => 1,
     'make_integer_threshold' => 500,
   },
   {
@@ -1279,19 +1279,13 @@ sub normalise_disk_space {
     return $_[0];
   } elsif ($_[0] =~ /^([.0-9]+) (\w+)$/) {
     my $space = $1;
-    my $unit = $2;
-
-    if ($unit eq 'B') {
-      return $space / (1024 * 1024);
-    } elsif ($unit eq 'KB') {
-      return $space / 1024;
-    } elsif ($unit eq 'MB') {
-      return $space;
-    } elsif ($unit eq 'GB') {
-      return $space * 1024;
-    } elsif ($unit eq 'TB') {
-      return $space * 1024 * 1024;
-    }
+    my $unit  = $2;
+
+    if    ($unit eq  'B') { return $space / (1024 * 1024) }
+    elsif ($unit eq 'KB') { return $space / 1024 }
+    elsif ($unit eq 'MB') { return $space }
+    elsif ($unit eq 'GB') { return $space * 1024 }
+    elsif ($unit eq 'TB') { return $space * 1024 * 1024 }
 
     warn "Unknown unit for disk space: $unit.  Please let the author of mythtv-status know.\n";
     return $space;