diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2023-10-27 09:40:11 +0100 |
---|---|---|
committer | Namhyung Kim <namhyung@kernel.org> | 2023-10-27 19:25:13 -0700 |
commit | 0e0f03d7fc933ffe22c67feeec4b49bdd4cbfbd1 (patch) | |
tree | e322a577738387b2bcb3e3f3335d62abdf290232 /tools/perf | |
parent | 93c65d61433bcec4070fc61b7c737c79fc25f09a (diff) |
perf report: Fix spelling mistake "heirachy" -> "hierarchy"
There is a spelling mistake in a ui error message. Fix it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Cc: kernel-janitors@vger.kernel.org
Link: https://lore.kernel.org/r/20231027084011.1167091-1-colin.i.king@gmail.com
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/builtin-report.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index ca8f2331795c..9cb1da2dc0c0 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c @@ -705,7 +705,7 @@ static int report__collapse_hists(struct report *rep) */ if (perf_data__is_pipe(session->data)) { if (perf_hpp__setup_hists_formats(&perf_hpp_list, evlist) < 0) { - ui__error("Failed to setup hierachy output formats\n"); + ui__error("Failed to setup hierarchy output formats\n"); return -1; } } |