aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/builtin-report.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c
index 348bed4a2abf..95a47719aec3 100644
--- a/tools/perf/builtin-report.c
+++ b/tools/perf/builtin-report.c
@@ -839,8 +839,10 @@ repeat:
839 if (report.header || report.header_only) { 839 if (report.header || report.header_only) {
840 perf_session__fprintf_info(session, stdout, 840 perf_session__fprintf_info(session, stdout,
841 report.show_full_info); 841 report.show_full_info);
842 if (report.header_only) 842 if (report.header_only) {
843 return 0; 843 ret = 0;
844 goto error;
845 }
844 } else if (use_browser == 0) { 846 } else if (use_browser == 0) {
845 fputs("# To display the perf.data header info, please use --header/--header-only options.\n#\n", 847 fputs("# To display the perf.data header info, please use --header/--header-only options.\n#\n",
846 stdout); 848 stdout);