diff options
Diffstat (limited to 'test/gen-wasm.py')
-rwxr-xr-x | test/gen-wasm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/gen-wasm.py b/test/gen-wasm.py index 4e53ac52..829845ca 100755 --- a/test/gen-wasm.py +++ b/test/gen-wasm.py @@ -50,7 +50,7 @@ NAMED_VALUES = { 'version': (0xd, 0, 0, 0), # section codes - 'UNKNOWN': 0, + 'USER': 0, 'TYPE': 1, 'IMPORT': 2, 'FUNCTION': 3, @@ -401,7 +401,7 @@ def p_data_user_section(p): p[0] = p[1] name = p[4] section_data = p[7] - p[0].append(0) # 0 is the section code for "unknown" + p[0].append(0) # 0 is the section code for "user" section_name_data = [] WriteLebU32(section_name_data, len(name)) WriteString(section_name_data, name) |