diff options
Diffstat (limited to 'tools/perf/ui/browsers/hists.c')
-rw-r--r-- | tools/perf/ui/browsers/hists.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/ui/browsers/hists.c b/tools/perf/ui/browsers/hists.c index 95f7cf1991fc..303ed62a8f53 100644 --- a/tools/perf/ui/browsers/hists.c +++ b/tools/perf/ui/browsers/hists.c | |||
@@ -1523,7 +1523,7 @@ static int hists_browser__scnprintf_headers(struct hist_browser *browser, char * | |||
1523 | if (perf_hpp__should_skip(fmt, hists) || column++ < browser->b.horiz_scroll) | 1523 | if (perf_hpp__should_skip(fmt, hists) || column++ < browser->b.horiz_scroll) |
1524 | continue; | 1524 | continue; |
1525 | 1525 | ||
1526 | ret = fmt->header(fmt, &dummy_hpp, hists); | 1526 | ret = fmt->header(fmt, &dummy_hpp, hists, 0); |
1527 | if (advance_hpp_check(&dummy_hpp, ret)) | 1527 | if (advance_hpp_check(&dummy_hpp, ret)) |
1528 | break; | 1528 | break; |
1529 | 1529 | ||
@@ -1560,7 +1560,7 @@ static int hists_browser__scnprintf_hierarchy_headers(struct hist_browser *brows | |||
1560 | if (column++ < browser->b.horiz_scroll) | 1560 | if (column++ < browser->b.horiz_scroll) |
1561 | continue; | 1561 | continue; |
1562 | 1562 | ||
1563 | ret = fmt->header(fmt, &dummy_hpp, hists); | 1563 | ret = fmt->header(fmt, &dummy_hpp, hists, 0); |
1564 | if (advance_hpp_check(&dummy_hpp, ret)) | 1564 | if (advance_hpp_check(&dummy_hpp, ret)) |
1565 | break; | 1565 | break; |
1566 | 1566 | ||
@@ -1597,7 +1597,7 @@ static int hists_browser__scnprintf_hierarchy_headers(struct hist_browser *brows | |||
1597 | } | 1597 | } |
1598 | first_col = false; | 1598 | first_col = false; |
1599 | 1599 | ||
1600 | ret = fmt->header(fmt, &dummy_hpp, hists); | 1600 | ret = fmt->header(fmt, &dummy_hpp, hists, 0); |
1601 | dummy_hpp.buf[ret] = '\0'; | 1601 | dummy_hpp.buf[ret] = '\0'; |
1602 | 1602 | ||
1603 | start = trim(dummy_hpp.buf); | 1603 | start = trim(dummy_hpp.buf); |