aboutsummaryrefslogtreecommitdiff
path: root/contrib/benchmark
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-09-26 17:44:02 +0200
committerFlorian Dold <florian.dold@gmail.com>2018-09-26 17:44:11 +0200
commit1d2d41d821dc9d15d11f8793440760f5cf1ce896 (patch)
tree81c541f70512bef6062ef702751f3ce28a63763c /contrib/benchmark
parenta611b66e1c0ec87c7f3dfb72da1e223379d735f9 (diff)
downloadgnunet-1d2d41d821dc9d15d11f8793440760f5cf1ce896.tar.gz
gnunet-1d2d41d821dc9d15d11f8793440760f5cf1ce896.zip
benchmark: fix syntax error in awk script
Diffstat (limited to 'contrib/benchmark')
-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 c4de209f9..482addaa0 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 > max ? t : max)
53 } 53 }
54} 54}
55 55