Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f9d36996 authored by Masanari Iida's avatar Masanari Iida Committed by Arnaldo Carvalho de Melo
Browse files

perf evsel: Fix spelling typo

Correct spelling "unsuported" to "unsupported" in
tools/peft/util/evsel.c

Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: standby24x7@gmail.com
Cc: trivial@kernel.org
Link: http://lkml.kernel.org/r/1327500312-9520-1-git-send-email-standby24x7@gmail.com


Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent efb3040d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -535,7 +535,7 @@ int perf_event__parse_sample(const union perf_event *event, u64 type,
	}
	}


	if (type & PERF_SAMPLE_READ) {
	if (type & PERF_SAMPLE_READ) {
		fprintf(stderr, "PERF_SAMPLE_READ is unsuported for now\n");
		fprintf(stderr, "PERF_SAMPLE_READ is unsupported for now\n");
		return -1;
		return -1;
	}
	}