diff options
author | Namhyung Kim <namhyung@gmail.com> | 2012-01-08 02:25:26 +0900 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-01-08 13:25:00 -0200 |
commit | c30ab8aa084843159b4679e9a3d7f63187d5906a (patch) | |
tree | 4871c987d818e5eeb3e24225c2ebd3c6990197d9 /tools | |
parent | 946ef2a24523e59e5cf931068ab7e9443c63c9df (diff) | |
download | op-kernel-dev-c30ab8aa084843159b4679e9a3d7f63187d5906a.zip op-kernel-dev-c30ab8aa084843159b4679e9a3d7f63187d5906a.tar.gz |
perf test: Change type of '-v' option to INCR
The '-v' option is usually defined via OPT_INCR not _INTEGER. Follow
the trend :).
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-2-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')
-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 2b9a7f4..3854e86 100644 --- a/tools/perf/builtin-test.c +++ b/tools/perf/builtin-test.c @@ -1396,7 +1396,7 @@ int cmd_test(int argc, const char **argv, const char *prefix __used) NULL, }; const struct option test_options[] = { - OPT_INTEGER('v', "verbose", &verbose, + OPT_INCR('v', "verbose", &verbose, "be more verbose (show symbol address, etc)"), OPT_END() }; |