Explorar el Código

Remove trailing 0 from parse_sizes output

Ian Goldberg hace 1 año
padre
commit
7e3ac77f22
Se han modificado 1 ficheros con 1 adiciones y 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";
     }
 }