There is a spelling mistake in a literal string. Fix it.
Signed-off-by: Colin Ian King <[email protected]>
---
tools/perf/builtin-kwork.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/perf/builtin-kwork.c b/tools/perf/builtin-kwork.c
index 04b966801643..7e8dd35d764b 100644
--- a/tools/perf/builtin-kwork.c
+++ b/tools/perf/builtin-kwork.c
@@ -1629,7 +1629,7 @@ static void top_print_header(struct perf_kwork *kwork __maybe_unused)
PRINT_CPU_USAGE_WIDTH, "%CPU",
PRINT_RUNTIME_HEADER_WIDTH + RPINT_DECIMAL_WIDTH, "RUNTIME",
- PRINT_TASK_NAME_WIDTH, "COMMMAND");
+ PRINT_TASK_NAME_WIDTH, "COMMAND");
printf("\n ");
print_separator(ret);
}
--
2.39.2
On Fri, Sep 15, 2023 at 2:09 AM Colin Ian King <[email protected]> wrote:
>
> There is a spelling mistake in a literal string. Fix it.
>
> Signed-off-by: Colin Ian King <[email protected]>
Reviewed-by: Ian Rogers <[email protected]>
Thanks,
Ian
> ---
> tools/perf/builtin-kwork.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/perf/builtin-kwork.c b/tools/perf/builtin-kwork.c
> index 04b966801643..7e8dd35d764b 100644
> --- a/tools/perf/builtin-kwork.c
> +++ b/tools/perf/builtin-kwork.c
> @@ -1629,7 +1629,7 @@ static void top_print_header(struct perf_kwork *kwork __maybe_unused)
>
> PRINT_CPU_USAGE_WIDTH, "%CPU",
> PRINT_RUNTIME_HEADER_WIDTH + RPINT_DECIMAL_WIDTH, "RUNTIME",
> - PRINT_TASK_NAME_WIDTH, "COMMMAND");
> + PRINT_TASK_NAME_WIDTH, "COMMAND");
> printf("\n ");
> print_separator(ret);
> }
> --
> 2.39.2
>
On Fri, Sep 15, 2023 at 9:44 AM Ian Rogers <[email protected]> wrote:
>
> On Fri, Sep 15, 2023 at 2:09 AM Colin Ian King <[email protected]> wrote:
> >
> > There is a spelling mistake in a literal string. Fix it.
> >
> > Signed-off-by: Colin Ian King <[email protected]>
>
> Reviewed-by: Ian Rogers <[email protected]>
Applied to perf-tools-next, thanks!
Namhyung