diff options
| author | Ingo Molnar <[email protected]> | 2009-06-06 19:25:29 +0000 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2009-06-06 19:25:29 +0000 |
| commit | 23b87116c7c4f73597965218b66041acbdb4e79f (patch) | |
| tree | 49ac61dda40c584036b588d16f79d1687104beac /tools/perf/builtin-annotate.c | |
| parent | perf_counter tools: Initialize a stack variable before use (diff) | |
| download | kernel-23b87116c7c4f73597965218b66041acbdb4e79f.tar.gz kernel-23b87116c7c4f73597965218b66041acbdb4e79f.zip | |
perf annotate: Fix command line help text
Arjan noticed this bug in the perf annotate help output:
-s, --symbol <file> symbol to annotate
that should be <symbol> instead.
Reported-by: Arjan van de Ven <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Mike Galbraith <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Arnaldo Carvalho de Melo <[email protected]>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <[email protected]>
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 80c5aa0bb42e..0e23fe98ec4e 100644 --- a/tools/perf/builtin-annotate.c +++ b/tools/perf/builtin-annotate.c @@ -1300,7 +1300,7 @@ static const char * const annotate_usage[] = { static const struct option options[] = { OPT_STRING('i', "input", &input_name, "file", "input file name"), - OPT_STRING('s', "symbol", &sym_hist_filter, "file", + OPT_STRING('s', "symbol", &sym_hist_filter, "symbol", "symbol to annotate"), OPT_BOOLEAN('v', "verbose", &verbose, "be more verbose (show symbol address, etc)"), |
