diff options
Diffstat (limited to 'tools/perf/builtin-report.c')
-rw-r--r-- | tools/perf/builtin-report.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index e93c69a8e720..daee082ab42b 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c | |||
@@ -32,11 +32,11 @@ | |||
32 | 32 | ||
33 | static char const *input_name = "perf.data"; | 33 | static char const *input_name = "perf.data"; |
34 | 34 | ||
35 | static int force; | 35 | static bool force; |
36 | static bool hide_unresolved; | 36 | static bool hide_unresolved; |
37 | static bool dont_use_callchains; | 37 | static bool dont_use_callchains; |
38 | 38 | ||
39 | static int show_threads; | 39 | static bool show_threads; |
40 | static struct perf_read_values show_threads_values; | 40 | static struct perf_read_values show_threads_values; |
41 | 41 | ||
42 | static char default_pretty_printing_style[] = "normal"; | 42 | static char default_pretty_printing_style[] = "normal"; |
@@ -418,7 +418,7 @@ static const char * const report_usage[] = { | |||
418 | static const struct option options[] = { | 418 | static const struct option options[] = { |
419 | OPT_STRING('i', "input", &input_name, "file", | 419 | OPT_STRING('i', "input", &input_name, "file", |
420 | "input file name"), | 420 | "input file name"), |
421 | OPT_BOOLEAN('v', "verbose", &verbose, | 421 | OPT_INCR('v', "verbose", &verbose, |
422 | "be more verbose (show symbol address, etc)"), | 422 | "be more verbose (show symbol address, etc)"), |
423 | OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace, | 423 | OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace, |
424 | "dump raw trace in ASCII"), | 424 | "dump raw trace in ASCII"), |