| ... | @@ -285,10 +285,10 @@ fn updateStats() error{OutOfMemory}!void { | ... | @@ -285,10 +285,10 @@ fn updateStats() error{OutOfMemory}!void { |
| 285 | , .{ | 285 | , .{ |
| 286 | hdr.n_runs, | 286 | hdr.n_runs, |
| 287 | hdr.unique_runs, | 287 | hdr.unique_runs, |
| 288 | @as(f64, @floatFromInt(hdr.unique_runs)) / @as(f64, @floatFromInt(hdr.n_runs)), | 288 | @as(f64, @floatFromInt(hdr.unique_runs)) / @as(f64, @floatFromInt(hdr.n_runs)) * 100, |
| 289 | covered_src_locs, | 289 | covered_src_locs, |
| 290 | total_src_locs, | 290 | total_src_locs, |
| 291 | @as(f64, @floatFromInt(covered_src_locs)) / @as(f64, @floatFromInt(total_src_locs)), | 291 | @as(f64, @floatFromInt(covered_src_locs)) / @as(f64, @floatFromInt(total_src_locs)) * 100, |
| 292 | avg_speed, | 292 | avg_speed, |
| 293 | }); | 293 | }); |
| 294 | defer gpa.free(html); | 294 | defer gpa.free(html); |