]> git.saurik.com Git - redis.git/commitdiff
Put duration in parenthesis
authorPieter Noordhuis <pcnoordhuis@gmail.com>
Wed, 3 Nov 2010 16:07:10 +0000 (17:07 +0100)
committerPieter Noordhuis <pcnoordhuis@gmail.com>
Wed, 3 Nov 2010 16:07:10 +0000 (17:07 +0100)
src/redis-cli.c

index 4c34dfb1a8dfec900e1e5627822cd7b22c962355..fec0fce408b9e1b84e5e7f2eafe9eaec47b9874f 100644 (file)
@@ -432,8 +432,9 @@ static void repl() {
                             cliPrintContextErrorAndExit();
                     }
                     elapsed = mstime()-start_time;
-                    if (elapsed > 500) printf("%.2f seconds\n",
-                        (double)elapsed/1000);
+                    if (elapsed >= 500) {
+                        printf("(%.2fs)\n",(double)elapsed/1000);
+                    }
                 }
             }
             /* Free the argument vector */