From: Florian Dold Date: Thu, 27 Sep 2018 13:45:26 +0000 (+0200) Subject: benchmark: output int X-Git-Tag: v0.11.0~241^2~21^2 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2c3b40e7c69c6065ef9c5dd344658411fa3f9659;p=oweals%2Fgnunet.git benchmark: output int --- diff --git a/contrib/benchmark/collect.awk b/contrib/benchmark/collect.awk index 5afa093e2..16f2e700c 100644 --- a/contrib/benchmark/collect.awk +++ b/contrib/benchmark/collect.awk @@ -105,6 +105,6 @@ END { for (x in op) { total_ops_adjusted += op_baseline[x] * op[x]["count"]; } - print "total_ops_adjusted_ms", total_ops_adjusted; + print "total_ops_adjusted_ms", int(total_ops_adjusted); } }