Explorar o código

Remove trailing 0 from parse_sizes output

Ian Goldberg hai 1 ano
pai
achega
7e3ac77f22
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      parse_sizes

+ 1 - 1
parse_sizes

@@ -55,6 +55,6 @@ while(<>) {
         # 2 to get the average size for each party
         my $bytes = ($setupsize + $opsize) / 2;
         my $kib = $bytes / 1024;
-        print "$depth $kib 0\n";
+        print "$depth $kib\n";
     }
 }