[tip:perf/core] perf utils: Fix spelling mistake: "Invalud" -> "Invalid"

From: tip-bot for Colin Ian King
Date: Sun Apr 02 2017 - 15:18:45 EST


Commit-ID: a596a877fde0b34e622dbf123f361dacd086cd6e
Gitweb: http://git.kernel.org/tip/a596a877fde0b34e622dbf123f361dacd086cd6e
Author: Colin Ian King <colin.king@xxxxxxxxxxxxx>
AuthorDate: Thu, 30 Mar 2017 10:54:40 +0100
Committer: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx>
CommitDate: Thu, 30 Mar 2017 11:09:42 -0300

perf utils: Fix spelling mistake: "Invalud" -> "Invalid"

Trivial fix to spelling mistake in pr_debug message.

Signed-off-by: Colin King <colin.king@xxxxxxxxxxxxx>
Cc: Alexander Shishkin <alexander.shishkin@xxxxxxxxxxxxxxx>
Cc: Jiri Olsa <jolsa@xxxxxxxxxx>
Cc: Namhyung Kim <namhyung@xxxxxxxxxx>
Cc: Krister Johansen <kjlx@xxxxxxxxxxxxxxxxxx>
Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx>
Cc: kernel-janitors@xxxxxxxxxxxxxxx
Link: http://lkml.kernel.org/r/20170330095440.19444-1-colin.king@xxxxxxxxxxxxx
Signed-off-by: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx>
---
tools/perf/util/hist.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

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