Skip to content

Commit

Permalink
generate: fix mixed tabs/spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Xyene authored Mar 15, 2024
1 parent 548e2d0 commit 3b12a30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def get_functions():
name = match.group(1)
if name.startswith('__mem'):
name = name.lstrip('_')
print('Found `%s` in "%s"' % (name, file))
print('Found `%s` in "%s"' % (name, file))
functions.append(name)
function_xmm[name] = xmm_usage[file]

Expand Down

0 comments on commit 3b12a30

Please sign in to comment.