From c41ed91c4a1a6c6ddb10281823cc3d05ea84f5c5 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Wed, 12 Sep 2018 11:39:05 +0100 Subject: [PATCH] mm.c (dorunone): Move `double' cast for consistency's sake. --- mm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm.c b/mm.c index c5690a5..47ffa0c 100644 --- a/mm.c +++ b/mm.c @@ -565,7 +565,7 @@ static void dorunone(allstats *a, dig *s) cpc_free(c); if (a->f & AF_VERBOSE) - printf("%2u (%5.2fs)\n", n, (double)t/CLOCKS_PER_SEC); + printf("%2u (%5.2fs)\n", n, t/(double)CLOCKS_PER_SEC); } static void dorunall(allstats *a, dig *s, unsigned i) -- 2.11.0