aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/ui/stdio/hist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/ui/stdio/hist.c b/tools/perf/ui/stdio/hist.c
index 5d007836d9a7..150c4de33b22 100644
--- a/tools/perf/ui/stdio/hist.c
+++ b/tools/perf/ui/stdio/hist.c
@@ -492,7 +492,6 @@ out:
492} 492}
493 493
494static int hist_entry__fprintf(struct hist_entry *he, size_t size, 494static int hist_entry__fprintf(struct hist_entry *he, size_t size,
495 struct hists *hists,
496 char *bf, size_t bfsz, FILE *fp) 495 char *bf, size_t bfsz, FILE *fp)
497{ 496{
498 int ret; 497 int ret;
@@ -500,6 +499,7 @@ static int hist_entry__fprintf(struct hist_entry *he, size_t size,
500 .buf = bf, 499 .buf = bf,
501 .size = size, 500 .size = size,
502 }; 501 };
502 struct hists *hists = he->hists;
503 u64 total_period = hists->stats.total_period; 503 u64 total_period = hists->stats.total_period;
504 504
505 if (size == 0 || size > bfsz) 505 if (size == 0 || size > bfsz)
@@ -755,7 +755,7 @@ size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
755 if (percent < min_pcnt) 755 if (percent < min_pcnt)
756 continue; 756 continue;
757 757
758 ret += hist_entry__fprintf(h, max_cols, hists, line, linesz, fp); 758 ret += hist_entry__fprintf(h, max_cols, line, linesz, fp);
759 759
760 if (max_rows && ++nr_rows >= max_rows) 760 if (max_rows && ++nr_rows >= max_rows)
761 break; 761 break;