From 30ca149be7b1adb7e3b867722bc4b224bdee32e2 Mon Sep 17 00:00:00 2001 From: hazohelet <48541090+hazohelet@users.noreply.github.com> Date: Wed, 2 Oct 2019 00:08:10 +0900 Subject: [PATCH] table.v: fix typo --- compiler/table.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/table.v b/compiler/table.v index 36131774b1..6fd52f62d6 100644 --- a/compiler/table.v +++ b/compiler/table.v @@ -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')