diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-05-17 14:51:10 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-05-17 15:22:37 -0400 |
commit | 8035458fbb567ae138c77a5f710050107c6a7066 (patch) | |
tree | 0bd6e3730d96aa5d574e73d500f1820d2b195d8c /tools/perf/builtin-test.c | |
parent | 1967936d688c475b85d34d84e09858cf514c893c (diff) |
perf options: Type check OPT_BOOLEAN and fix the offenders
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-test.c')
-rw-r--r-- | tools/perf/builtin-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-test.c b/tools/perf/builtin-test.c index 0339612e7385..035b9fa063a9 100644 --- a/tools/perf/builtin-test.c +++ b/tools/perf/builtin-test.c | |||
@@ -257,7 +257,7 @@ static const char * const test_usage[] = { | |||
257 | }; | 257 | }; |
258 | 258 | ||
259 | static const struct option test_options[] = { | 259 | static const struct option test_options[] = { |
260 | OPT_BOOLEAN('v', "verbose", &verbose, | 260 | OPT_INTEGER('v', "verbose", &verbose, |
261 | "be more verbose (show symbol address, etc)"), | 261 | "be more verbose (show symbol address, etc)"), |
262 | OPT_END() | 262 | OPT_END() |
263 | }; | 263 | }; |