summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index b6aa680..27f37dd 100644
--- a/main.c
+++ b/main.c
@@ -292,7 +292,7 @@ void benchmark() {
const int threads[] = {1, 2, 4, 8, 16, 32, 0};
for (int i = 0; threads[i] > 0; ++i) {
- printf(" %d thread: %.3f sec%s\n",
+ printf(" %3.d thread: %9.3f sec%s\n",
threads[i], (double) KEYSPACE_SIZE / key_per_sec / threads[i],
(threads[i] != 1) ? " (estimate)" : "");
}