Repair error

When running this script, I get:

Useless use of multiplication (*) in void context at ./zfs-freebsd line 163
This commit is contained in:
Dan Langille
2019-12-24 14:56:52 -05:00
committed by GitHub
parent 16e35492c2
commit 44c798f6dc
+1 -1
View File
@@ -160,7 +160,7 @@ my $actual_hit_percent = $real_hits / $arc_accesses_total * 100;
my $data_demand_percent = 0;
if ( $demand_data_total != 0 ){
$demand_data_hits / $demand_data_total * 100;
$demand_data_hits /= $demand_data_total * 100;
}
my $data_prefetch_percent=0;