diff options
author | Namhyung Kim <namhyung@gmail.com> | 2012-01-07 12:25:30 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-01-08 10:28:48 -0500 |
commit | 993452541796f3637da9f2e537b9333494b3b2a1 (patch) | |
tree | 9ae4400189aad41fcbfdcde757366434c5d1aef8 /tools/perf/builtin-annotate.c | |
parent | 1b22859d4320d472a7a51ff4a43f62b0578469de (diff) |
perf annotate: Fix usage string
The annotate command doesn't take non-option arguments.
In fact, it can take last argument as a symbol filter though, but that's
a special case and, IMHO, it should be discouraged in favor of the -s
option.
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1325957132-10600-6-git-send-email-namhyung@gmail.com
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-annotate.c')
-rw-r--r-- | tools/perf/builtin-annotate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c index 214ba7f9f577..3ec2496f1e35 100644 --- a/tools/perf/builtin-annotate.c +++ b/tools/perf/builtin-annotate.c | |||
@@ -235,7 +235,7 @@ out_delete: | |||
235 | } | 235 | } |
236 | 236 | ||
237 | static const char * const annotate_usage[] = { | 237 | static const char * const annotate_usage[] = { |
238 | "perf annotate [<options>] <command>", | 238 | "perf annotate [<options>]", |
239 | NULL | 239 | NULL |
240 | }; | 240 | }; |
241 | 241 | ||