2023-10-27 08:41:24

by Colin Ian King

[permalink] [raw]
Subject: [PATCH][next] 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 <[email protected]>
---
tools/perf/builtin-report.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

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;
}
}
--
2.39.2


2023-10-30 18:59:44

by Namhyung Kim

[permalink] [raw]
Subject: Re: [PATCH][next] perf report: Fix spelling mistake "heirachy" -> "hierarchy"

On Fri, 27 Oct 2023 09:40:11 +0100, Colin Ian King wrote:
> There is a spelling mistake in a ui error message. Fix it.
>
>

Applied to perf-tools-next, thanks!