There is a spelling mistake in a debug message. Fix it. Signed-off-by: Colin Ian King <colin.i.king@xxxxxxxxx> --- tools/perf/util/mmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/util/mmap.c b/tools/perf/util/mmap.c index 4cb5f2f159cc..50502b4a7ca4 100644 --- a/tools/perf/util/mmap.c +++ b/tools/perf/util/mmap.c @@ -298,7 +298,7 @@ int mmap__mmap(struct mmap *map, struct mmap_params *mp, int fd, struct perf_cpu map->comp_level = mp->comp_level; #ifndef PYTHON_PERF if (zstd_init(&map->zstd_data, map->comp_level)) { - pr_debug2("failed to init mmap commpressor, error %d\n", errno); + pr_debug2("failed to init mmap compressor, error %d\n", errno); return -1; } #endif -- 2.34.1