diff options
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/perf_counter/builtin-report.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/perf_counter/builtin-report.c b/Documentation/perf_counter/builtin-report.c index 6d359c9f75dd..e837bb983dca 100644 --- a/Documentation/perf_counter/builtin-report.c +++ b/Documentation/perf_counter/builtin-report.c | |||
@@ -529,7 +529,7 @@ hist_entry__fprintf(FILE *fp, struct hist_entry *self, uint64_t total_samples) | |||
529 | size_t ret; | 529 | size_t ret; |
530 | 530 | ||
531 | if (total_samples) { | 531 | if (total_samples) { |
532 | ret = fprintf(fp, " %5.2f%%", | 532 | ret = fprintf(fp, " %6.2f%%", |
533 | (self->count * 100.0) / total_samples); | 533 | (self->count * 100.0) / total_samples); |
534 | } else | 534 | } else |
535 | ret = fprintf(fp, "%12d ", self->count); | 535 | ret = fprintf(fp, "%12d ", self->count); |