diff options
-rw-r--r-- | tools/lib/traceevent/event-parse.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lib/traceevent/event-parse.h b/tools/lib/traceevent/event-parse.h index 527df038a25f..863a0bbda7f1 100644 --- a/tools/lib/traceevent/event-parse.h +++ b/tools/lib/traceevent/event-parse.h | |||
@@ -49,7 +49,7 @@ struct pevent_record { | |||
49 | int cpu; | 49 | int cpu; |
50 | int ref_count; | 50 | int ref_count; |
51 | int locked; /* Do not free, even if ref_count is zero */ | 51 | int locked; /* Do not free, even if ref_count is zero */ |
52 | void *private; | 52 | void *priv; |
53 | #if DEBUG_RECORD | 53 | #if DEBUG_RECORD |
54 | struct pevent_record *prev; | 54 | struct pevent_record *prev; |
55 | struct pevent_record *next; | 55 | struct pevent_record *next; |
@@ -106,7 +106,7 @@ struct plugin_option { | |||
106 | char *plugin_alias; | 106 | char *plugin_alias; |
107 | char *description; | 107 | char *description; |
108 | char *value; | 108 | char *value; |
109 | void *private; | 109 | void *priv; |
110 | int set; | 110 | int set; |
111 | }; | 111 | }; |
112 | 112 | ||