From: Colin Ian King Date: Thu, 30 Mar 2017 09:54:40 +0000 (+0100) Subject: perf utils: Fix spelling mistake: "Invalud" -> "Invalid" X-Git-Tag: v4.14-rc1~1048^2~19^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a596a877fde0b34e622dbf123f361dacd086cd6e;p=platform%2Fkernel%2Flinux-rpi.git perf utils: Fix spelling mistake: "Invalud" -> "Invalid" Trivial fix to spelling mistake in pr_debug message. Signed-off-by: Colin King Cc: Alexander Shishkin Cc: Jiri Olsa Cc: Namhyung Kim Cc: Krister Johansen Cc: Peter Zijlstra Cc: kernel-janitors@vger.kernel.org Link: http://lkml.kernel.org/r/20170330095440.19444-1-colin.king@canonical.com Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c index 3c4d4d0..61bf304 100644 --- a/tools/perf/util/hist.c +++ b/tools/perf/util/hist.c @@ -2459,7 +2459,7 @@ int parse_filter_percentage(const struct option *opt __maybe_unused, else if (!strcmp(arg, "absolute")) symbol_conf.filter_relative = false; else { - pr_debug("Invalud percentage: %s\n", arg); + pr_debug("Invalid percentage: %s\n", arg); return -1; }