diff options
Diffstat (limited to 'tools/lib/traceevent/event-parse-api.c')
-rw-r--r-- | tools/lib/traceevent/event-parse-api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lib/traceevent/event-parse-api.c b/tools/lib/traceevent/event-parse-api.c index 2ac8b44854ce..002b3f73862b 100644 --- a/tools/lib/traceevent/event-parse-api.c +++ b/tools/lib/traceevent/event-parse-api.c | |||
@@ -88,7 +88,7 @@ void tep_clear_flag(struct tep_handle *tep, enum tep_flag flag) | |||
88 | bool tep_test_flag(struct tep_handle *tep, enum tep_flag flag) | 88 | bool tep_test_flag(struct tep_handle *tep, enum tep_flag flag) |
89 | { | 89 | { |
90 | if (tep) | 90 | if (tep) |
91 | return (tep->flags & flag); | 91 | return tep->flags & flag; |
92 | return false; | 92 | return false; |
93 | } | 93 | } |
94 | 94 | ||
@@ -340,7 +340,7 @@ void tep_set_latency_format(struct tep_handle *pevent, int lat) | |||
340 | bool tep_is_old_format(struct tep_handle *tep) | 340 | bool tep_is_old_format(struct tep_handle *tep) |
341 | { | 341 | { |
342 | if (tep) | 342 | if (tep) |
343 | return !!(tep->old_format); | 343 | return tep->old_format; |
344 | return false; | 344 | return false; |
345 | } | 345 | } |
346 | 346 | ||