diff options
Diffstat (limited to 'tools/perf/builtin-annotate.c')
-rw-r--r-- | tools/perf/builtin-annotate.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c index ee0d91726991..06eaebe10d04 100644 --- a/tools/perf/builtin-annotate.c +++ b/tools/perf/builtin-annotate.c | |||
@@ -28,11 +28,11 @@ | |||
28 | 28 | ||
29 | static char const *input_name = "perf.data"; | 29 | static char const *input_name = "perf.data"; |
30 | 30 | ||
31 | static int force; | 31 | static bool force; |
32 | 32 | ||
33 | static int full_paths; | 33 | static bool full_paths; |
34 | 34 | ||
35 | static int print_line; | 35 | static bool print_line; |
36 | 36 | ||
37 | struct sym_hist { | 37 | struct sym_hist { |
38 | u64 sum; | 38 | u64 sum; |
@@ -595,7 +595,7 @@ static const struct option options[] = { | |||
595 | OPT_STRING('s', "symbol", &sym_hist_filter, "symbol", | 595 | OPT_STRING('s', "symbol", &sym_hist_filter, "symbol", |
596 | "symbol to annotate"), | 596 | "symbol to annotate"), |
597 | OPT_BOOLEAN('f', "force", &force, "don't complain, do it"), | 597 | OPT_BOOLEAN('f', "force", &force, "don't complain, do it"), |
598 | OPT_BOOLEAN('v', "verbose", &verbose, | 598 | OPT_INCR('v', "verbose", &verbose, |
599 | "be more verbose (show symbol address, etc)"), | 599 | "be more verbose (show symbol address, etc)"), |
600 | OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace, | 600 | OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace, |
601 | "dump raw trace in ASCII"), | 601 | "dump raw trace in ASCII"), |