aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-04-02 15:08:33 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-04-02 15:08:33 +0000
commit953a6678dc5804ce09f98d0995db3987f1f816e2 (patch)
treef4f55c9b099a845318cb1a67c8813a66030c4194
parent65c0297240442a512be937c7a831fb07abb8ef6e (diff)
Improve alignment.
-rw-r--r--fbench/src/fbench/fbench.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fbench/src/fbench/fbench.cpp b/fbench/src/fbench/fbench.cpp
index 395381966fd..28de81d5899 100644
--- a/fbench/src/fbench/fbench.cpp
+++ b/fbench/src/fbench/fbench.cpp
@@ -213,7 +213,7 @@ std::string
fmtPercentile(double percentile) {
char buf[32];
if (percentile <= 99.0) {
- snprintf(buf, sizeof(buf), "%2d", int(percentile));
+ snprintf(buf, sizeof(buf), "%2d ", int(percentile));
} else {
snprintf(buf, sizeof(buf), "%2.1f", percentile);
}