aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-annotate.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-06-06 15:25:29 -0400
committerIngo Molnar <mingo@elte.hu>2009-06-06 15:25:29 -0400
commit23b87116c7c4f73597965218b66041acbdb4e79f (patch)
tree49ac61dda40c584036b588d16f79d1687104beac /tools/perf/builtin-annotate.c
parente9fbc9dc9214d6a9de7d62627be5414804fd7b9f (diff)
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 <arjan@linux.intel.com> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> LKML-Reference: <new-submission> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/builtin-annotate.c')
-rw-r--r--tools/perf/builtin-annotate.c2
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[] = {
1300static const struct option options[] = { 1300static const struct option options[] = {
1301 OPT_STRING('i', "input", &input_name, "file", 1301 OPT_STRING('i', "input", &input_name, "file",
1302 "input file name"), 1302 "input file name"),
1303 OPT_STRING('s', "symbol", &sym_hist_filter, "file", 1303 OPT_STRING('s', "symbol", &sym_hist_filter, "symbol",
1304 "symbol to annotate"), 1304 "symbol to annotate"),
1305 OPT_BOOLEAN('v', "verbose", &verbose, 1305 OPT_BOOLEAN('v', "verbose", &verbose,
1306 "be more verbose (show symbol address, etc)"), 1306 "be more verbose (show symbol address, etc)"),