Skip to content

Commit

Permalink
gen_utf8_tables: remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilk authored and nicowilliams committed Jan 26, 2017
1 parent 19d266b commit 61b7563
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion scripts/gen_utf8_tables.py
Expand Up @@ -7,7 +7,6 @@

def print_table(type, name, t):
print("static const %s %s[] =" % (type, name))
first = True
for i in range(0,len(t),16):
print ((" {" if i == 0 else " ") +
", ".join("0x%02x"%n for n in t[i:i+16]) +
Expand Down

0 comments on commit 61b7563

Please sign in to comment.