We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac0cbe2 commit f67767bCopy full SHA for f67767b
third_party/build_fatpack/build.pl
@@ -40,7 +40,7 @@
40
my $cmd = "fatpack pack $input_file 2>/dev/null > $output_file";
41
42
my $exit = system($cmd);
43
-$exit = $exit >> 8;
+$exit >>= 8;
44
45
rmdir("fatlib"); # fatpack leaves empty fatlib dirs so we remove them
46
my $size = -s $output_file;
third_party/cli_bench/cli_bench.pl
@@ -114,7 +114,7 @@ sub average {
114
}
115
116
my $count = scalar(@_);
117
- $ret = $ret / $count;
+ $ret /= $count;
118
119
return $ret;
120
0 commit comments