Skip to content

Commit

Permalink
Change syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Howard McLauchlan committed Mar 21, 2018
1 parent ef4154b commit 2688234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/inject.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ def _parse_frames(self):
count += c == '('
count -= c == ')'
if not count:
if c == '\0' or (c == '<' and data[i + 1] == '-'):
if c == '\0' or (c == '=' and data[i + 1] == '>'):
if len(cur_frame) == 2:
frame = tuple(cur_frame)
elif cur_frame[0][0] == '(':
Expand Down

0 comments on commit 2688234

Please sign in to comment.