aboutsummaryrefslogtreecommitdiff
path: root/contrib/benchmark/collect.awk
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/benchmark/collect.awk')
-rw-r--r--contrib/benchmark/collect.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/benchmark/collect.awk b/contrib/benchmark/collect.awk
index 62cbc69bc..b1e5977fd 100644
--- a/contrib/benchmark/collect.awk
+++ b/contrib/benchmark/collect.awk
@@ -49,7 +49,7 @@ function abs(v) {
49 url[$2][$4]["time_us_sq"] += n * (t/n) * (t/n); 49 url[$2][$4]["time_us_sq"] += n * (t/n) * (t/n);
50 } 50 }
51 max = url[$2][$4]["time_us_max"]; 51 max = url[$2][$4]["time_us_max"];
52 url[$2][$4]["time_us_max"] = (t > max ? t : max) 52 url[$2][$4]["time_us_max"] = (t/n > max ? t/n : max)
53 } 53 }
54} 54}
55 55