diff --git a/[refs] b/[refs] index 66238733cac8..440025bfda86 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: c64550cfddfdbd7a6f9d5ffb37382a05d7f0306b +refs/heads/master: d197fd5d743289e90c160c8c17460b390d862b98 diff --git a/trunk/tools/perf/util/hist.c b/trunk/tools/perf/util/hist.c index 1f269fd48944..f6a993963a1e 100644 --- a/trunk/tools/perf/util/hist.c +++ b/trunk/tools/perf/util/hist.c @@ -725,7 +725,8 @@ void hists__output_recalc_col_len(struct hists *hists, int max_rows) while (next && row++ < max_rows) { n = rb_entry(next, struct hist_entry, rb_node); - hists__calc_col_len(hists, n); + if (!n->filtered) + hists__calc_col_len(hists, n); next = rb_next(&n->rb_node); } }