aboutsummaryrefslogtreecommitdiff
path: root/src/nse
diff options
context:
space:
mode:
Diffstat (limited to 'src/nse')
-rw-r--r--src/nse/perf_kdf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nse/perf_kdf.c b/src/nse/perf_kdf.c
index 4981eae5d..61e477874 100644
--- a/src/nse/perf_kdf.c
+++ b/src/nse/perf_kdf.c
@@ -76,9 +76,9 @@ main (int argc, char *argv[])
76 GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_duration (start), 76 GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_duration (start),
77 GNUNET_YES)); 77 GNUNET_YES));
78 GAUGER ("NSE", "Proof-of-work hashing", 78 GAUGER ("NSE", "Proof-of-work hashing",
79 1024LL / (1LL + 79 1024.0 / (1.0 +
80 GNUNET_TIME_absolute_get_duration 80 GNUNET_TIME_absolute_get_duration
81 (start).rel_value_us / 1000LL), "hashes/ms"); 81 (start).rel_value_us / 1000.0), "hashes/ms");
82 return 0; 82 return 0;
83} 83}
84 84