diff options
Diffstat (limited to 'tools/perf/builtin-sched.c')
-rw-r--r-- | tools/perf/builtin-sched.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/builtin-sched.c b/tools/perf/builtin-sched.c index e862e71f4e68..702322f8fec1 100644 --- a/tools/perf/builtin-sched.c +++ b/tools/perf/builtin-sched.c | |||
@@ -1654,9 +1654,9 @@ static int process_lost_event(event_t *event __used, | |||
1654 | } | 1654 | } |
1655 | 1655 | ||
1656 | static struct perf_event_ops event_ops = { | 1656 | static struct perf_event_ops event_ops = { |
1657 | .process_sample_event = process_sample_event, | 1657 | .sample = process_sample_event, |
1658 | .process_comm_event = event__process_comm, | 1658 | .comm = event__process_comm, |
1659 | .process_lost_event = process_lost_event, | 1659 | .lost = process_lost_event, |
1660 | }; | 1660 | }; |
1661 | 1661 | ||
1662 | static int read_events(void) | 1662 | static int read_events(void) |