Skip to content

Commit e978be9

Browse files
soramichiacmel
authored andcommitted
perf evlist: Fix typo in perf_evlist__start_workload()
This patch fixes a typo: s/enable to/unable to/ Signed-off-by: Soramichi AKIYAMA <[email protected]> Cc: Alexander Shishkin <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Peter Zijlstra <[email protected]> Fixes: bcf3145 ("perf evlist: Enhance perf_evlist__start_workload()") Link: http://lkml.kernel.org/r/[email protected] [ Wasn't applying, fixed it up by hand, added Fixes: tag ] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
1 parent 017037f commit e978be9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/perf/util/evlist.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1797,7 +1797,7 @@ int perf_evlist__start_workload(struct perf_evlist *evlist)
17971797
*/
17981798
ret = write(evlist->workload.cork_fd, &bf, 1);
17991799
if (ret < 0)
1800-
perror("enable to write to pipe");
1800+
perror("unable to write to pipe");
18011801

18021802
close(evlist->workload.cork_fd);
18031803
return ret;

0 commit comments

Comments
 (0)