mm.c (dorunone): Move `double' cast for consistency's sake.
authorMark Wooding <mdw@distorted.org.uk>
Wed, 12 Sep 2018 10:39:05 +0000 (11:39 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Thu, 5 Sep 2019 13:09:49 +0000 (14:09 +0100)
mm.c

diff --git a/mm.c b/mm.c
index c5690a5..47ffa0c 100644 (file)
--- 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)