From: Niels Möller Date: Sun, 23 Oct 2005 17:54:13 +0000 (+0200) Subject: (display): Use two decimal places. X-Git-Tag: nettle_1.14_release_20051205~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c34d76b1fde2d5c0a3e7ee6bed5562cbcaecd6fb;p=thirdparty%2Fnettle.git (display): Use two decimal places. Rev: src/nettle/examples/nettle-benchmark.c:1.17 --- 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"); }