aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);
}