diff options
Diffstat (limited to 'tools/perf/util/evsel.c')
-rw-r--r-- | tools/perf/util/evsel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/evsel.c b/tools/perf/util/evsel.c index 0fea724e735c..d8c2298cd32a 100644 --- a/tools/perf/util/evsel.c +++ b/tools/perf/util/evsel.c | |||
@@ -2419,7 +2419,7 @@ int perf_evsel__open_strerror(struct perf_evsel *evsel, struct target *target, | |||
2419 | "The sys_perf_event_open() syscall returned with %d (%s) for event (%s).\n" | 2419 | "The sys_perf_event_open() syscall returned with %d (%s) for event (%s).\n" |
2420 | "/bin/dmesg may provide additional information.\n" | 2420 | "/bin/dmesg may provide additional information.\n" |
2421 | "No CONFIG_PERF_EVENTS=y kernel support configured?", | 2421 | "No CONFIG_PERF_EVENTS=y kernel support configured?", |
2422 | err, strerror_r(err, sbuf, sizeof(sbuf)), | 2422 | err, str_error_r(err, sbuf, sizeof(sbuf)), |
2423 | perf_evsel__name(evsel)); | 2423 | perf_evsel__name(evsel)); |
2424 | } | 2424 | } |
2425 | 2425 | ||