Skip to content

Commit

Permalink
topdown-csv: Fix checking for missing events
Browse files Browse the repository at this point in the history
  • Loading branch information
Andi Kleen committed Dec 12, 2024
1 parent 2e2d46f commit b8dc9ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion topdown-csv/topdown-csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def verify_event(t, what):
t = m.group(1)
extra = m.group(2)
e = findevent(t)
if e is None:
if not e:
if t.startswith("UNC"):
print("not found", t, file=sys.stderr)
if t.endswith("_ANY"):
Expand Down

0 comments on commit b8dc9ba

Please sign in to comment.