table.v: fix typo

pull/2193/head
hazohelet 2019-10-02 00:08:10 +09:00 committed by Alexander Medvednikov
parent 7fd2ef975b
commit 30ca149be7
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ fn new_table(obfuscate bool) &Table {
t.register_type('size_t')
t.register_type_with_parent('i8', 'int')
t.register_type_with_parent('byte', 'int')
t.register_type_with_parent('char', 'int') // for C functinos only, to avoid warnings
t.register_type_with_parent('char', 'int') // for C functions only, to avoid warnings
t.register_type_with_parent('i16', 'int')
t.register_type_with_parent('u16', 'u32')
t.register_type_with_parent('u32', 'int')