aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/builtin-kmem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-kmem.c b/tools/perf/builtin-kmem.c
index 1b04787ed90..5f209514f65 100644
--- a/tools/perf/builtin-kmem.c
+++ b/tools/perf/builtin-kmem.c
@@ -687,14 +687,14 @@ static int parse_sort_opt(const struct option *opt __used,
687} 687}
688 688
689static int parse_caller_opt(const struct option *opt __used, 689static int parse_caller_opt(const struct option *opt __used,
690 const char *arg, int unset __used) 690 const char *arg __used, int unset __used)
691{ 691{
692 caller_flag = (alloc_flag + 1); 692 caller_flag = (alloc_flag + 1);
693 return 0; 693 return 0;
694} 694}
695 695
696static int parse_alloc_opt(const struct option *opt __used, 696static int parse_alloc_opt(const struct option *opt __used,
697 const char *arg, int unset __used) 697 const char *arg __used, int unset __used)
698{ 698{
699 alloc_flag = (caller_flag + 1); 699 alloc_flag = (caller_flag + 1);
700 return 0; 700 return 0;