Browse Source

Remove trailing 0 from parse_sizes output

Ian Goldberg 1 year ago
parent
commit
7e3ac77f22
1 changed files with 1 additions and 1 deletions
  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";
     }
 }