Commit-ID: 701516ae3dec801084bc913d21e03fce15c61a0b Gitweb: http://git.kernel.org/tip/701516ae3dec801084bc913d21e03fce15c61a0b Author: Adrian Hunter <[email protected]> AuthorDate: Fri, 26 May 2017 11:17:20 +0300 Committer: Arnaldo Carvalho de Melo <[email protected]> CommitDate: Wed, 21 Jun 2017 11:35:53 -0300
perf script: Fix message because field list option is -F not -f Fix message because field list option is -F not -f. Signed-off-by: Adrian Hunter <[email protected]> Cc: Andi Kleen <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]> --- tools/perf/builtin-script.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c index db5261c..4bce7d8 100644 --- a/tools/perf/builtin-script.c +++ b/tools/perf/builtin-script.c @@ -385,7 +385,7 @@ static int perf_session__check_output_opt(struct perf_session *session) */ if (!evsel && output[j].user_set && !output[j].wildcard_set) { pr_err("%s events do not exist. " - "Remove corresponding -f option to proceed.\n", + "Remove corresponding -F option to proceed.\n", event_type(j)); return -1; }

