From: Bean Huo <beanhuo@xxxxxxxxxx> There is no struct tep_event_format, it should be struct tep_event. And the first parameter in tep_find_event_by_record() should be tep, instead of pevent. Signed-off-by: Bean Huo <beanhuo@xxxxxxxxxx> --- Documentation/libtraceevent-field_get_val.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/libtraceevent-field_get_val.txt b/Documentation/libtraceevent-field_get_val.txt index 69d51bfc1020..6a5f1cd74f4d 100644 --- a/Documentation/libtraceevent-field_get_val.txt +++ b/Documentation/libtraceevent-field_get_val.txt @@ -64,10 +64,10 @@ void process_record(struct tep_record *record) { int len; char *comm; - struct tep_event_format *event; + struct tep_event *event; unsigned long long val; - event = tep_find_event_by_record(pevent, record); + event = tep_find_event_by_record(tep, record); if (event != NULL) { if (tep_get_common_field_val(NULL, event, "common_type", record, &val, 0) == 0) { -- 2.34.1