Fix MB vs. GB master
authorJan Kratochvil <jan@jankratochvil.net>
Tue, 19 Sep 2023 03:24:39 +0000 (05:24 +0200)
committerJan Kratochvil <jan@jankratochvil.net>
Tue, 19 Sep 2023 03:24:39 +0000 (05:24 +0200)
mailsize

index 37fc189..988776a 100755 (executable)
--- a/mailsize
+++ b/mailsize
@@ -112,7 +112,7 @@ if ($arg&&load_ok()) {
       return "$b bytes" if !$kb;
       my $mb=int($kb/1000);
       return "$kb KB" if !$mb;
-      my $gb=int($kb/1000);
+      my $gb=int($mb/1000);
       return "$mb MB" if !$gb;
       return "$gb GB";
     }