diff options
Diffstat (limited to 'tools/perf/builtin-report.c')
-rw-r--r-- | tools/perf/builtin-report.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index 6767f10615ea..b13a7e2f839e 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c | |||
@@ -473,7 +473,8 @@ int cmd_report(int argc, const char **argv, const char *prefix __used) | |||
473 | setup_sorting(report_usage, options); | 473 | setup_sorting(report_usage, options); |
474 | 474 | ||
475 | if (parent_pattern != default_parent_pattern) { | 475 | if (parent_pattern != default_parent_pattern) { |
476 | sort_dimension__add("parent"); | 476 | if (sort_dimension__add("parent") < 0) |
477 | return -1; | ||
477 | sort_parent.elide = 1; | 478 | sort_parent.elide = 1; |
478 | } else | 479 | } else |
479 | symbol_conf.exclude_other = false; | 480 | symbol_conf.exclude_other = false; |