From c34d76b1fde2d5c0a3e7ee6bed5562cbcaecd6fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se> Date: Sun, 23 Oct 2005 19:54:13 +0200 Subject: [PATCH] (display): Use two decimal places. Rev: src/nettle/examples/nettle-benchmark.c:1.17 --- examples/nettle-benchmark.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/nettle-benchmark.c b/examples/nettle-benchmark.c index 332787e5..294028dd 100644 --- a/examples/nettle-benchmark.c +++ b/examples/nettle-benchmark.c @@ -176,14 +176,14 @@ static void display(const char *name, const char *mode, unsigned block_size, double time) { - printf("%18s %11s %7.1f", + printf("%18s %11s %7.2f", name, mode, BENCH_BLOCK / (time * 1048576.0)); if (frequency > 0.0) { - printf(" %11.1f", time * frequency / BENCH_BLOCK); + printf(" %11.2f", time * frequency / BENCH_BLOCK); if (block_size > 0) - printf(" %12.1f", time * frequency * block_size / BENCH_BLOCK); + printf(" %12.2f", time * frequency * block_size / BENCH_BLOCK); } printf("\n"); } -- GitLab