Commit bb2765dc authored by Charlie's avatar Charlie

Don't NUL terminate the enum spec in the enum spec writing function,

the function-emitting function will do that.

Spotted by:	Nils Goroll
parent 2fface76
......@@ -141,7 +141,6 @@ def parse_enum(tq):
raise Exception("Duplicate Enum value '%s'" % i)
b[i] = True
s = s + i.strip() + '\\0'
s = s + '\\0'
return s
#######################################################################
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment