diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-05-17 22:51:10 +0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-05-17 23:22:37 +0400 |
commit | 8035458fbb567ae138c77a5f710050107c6a7066 (patch) | |
tree | 0bd6e3730d96aa5d574e73d500f1820d2b195d8c /tools/perf/builtin-lock.c | |
parent | 1967936d688c475b85d34d84e09858cf514c893c (diff) | |
download | linux-8035458fbb567ae138c77a5f710050107c6a7066.tar.xz |
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-lock.c')
-rw-r--r-- | tools/perf/builtin-lock.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/perf/builtin-lock.c b/tools/perf/builtin-lock.c index e18dfdc2948a..821c1586a22b 100644 --- a/tools/perf/builtin-lock.c +++ b/tools/perf/builtin-lock.c @@ -792,8 +792,7 @@ static void print_result(void) print_bad_events(bad, total); } -static int info_threads; -static int info_map; +static bool info_threads, info_map; static void dump_threads(void) { |