From 317302412eece17d0b414acb6e3515c4969ab0c3 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 13 Apr 1998 04:44:49 +0000 Subject: [PATCH] not quite so many decimal places in "speedup" :-) --- main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.c b/main.c index baae9d44..cbda40e7 100644 --- a/main.c +++ b/main.c @@ -92,14 +92,14 @@ static void report(int f) } #if HAVE_LONGLONG - printf("wrote %lld bytes read %lld bytes %g bytes/sec\n", + printf("wrote %lld bytes read %lld bytes %.2f bytes/sec\n", (long long)out,(long long)in,(in+out)/(0.5 + (t-starttime))); - printf("total size is %lld speedup is %g\n", + printf("total size is %lld speedup is %.2f\n", (long long)tsize,(1.0*tsize)/(in+out)); #else - printf("wrote %ld bytes read %ld bytes %g bytes/sec\n", + printf("wrote %ld bytes read %ld bytes %.2f bytes/sec\n", (long)out,(long)in,(in+out)/(0.5 + (t-starttime))); - printf("total size is %ld speedup is %g\n", + printf("total size is %ld speedup is %.2f\n", (long)tsize,(1.0*tsize)/(in+out)); #endif } -- 2.34.1