gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunet] branch master updated: benchmark: fix syntax error


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated: benchmark: fix syntax error in awk script
Date: Wed, 26 Sep 2018 17:45:41 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 1d2d41d82 benchmark: fix syntax error in awk script
1d2d41d82 is described below

commit 1d2d41d821dc9d15d11f8793440760f5cf1ce896
Author: Florian Dold <address@hidden>
AuthorDate: Wed Sep 26 17:44:02 2018 +0200

    benchmark: fix syntax error in awk script
---
 contrib/benchmark/collect.awk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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) {
       url[$2][$4]["time_us_sq"] += n * (t/n) * (t/n);
     }
     max = url[$2][$4]["time_us_max];
-    url[$2][$4]["time_us_max] = (t > max ? t : max)
+    url[$2][$4]["time_us_max"] = (t > max ? t : max)
   }
 }
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]