From: Andrew Tridgell Date: Mon, 13 Apr 1998 04:44:49 +0000 (+0000) Subject: not quite so many decimal places in "speedup" :-) X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/317302412eece17d0b414acb6e3515c4969ab0c3 not quite so many decimal places in "speedup" :-) --- 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 }