diff --git a/BeefLibs/corlib/src/WebAssembly.bf b/BeefLibs/corlib/src/WebAssembly.bf index b0d87a3a..70f9d6b0 100644 --- a/BeefLibs/corlib/src/WebAssembly.bf +++ b/BeefLibs/corlib/src/WebAssembly.bf @@ -42,8 +42,8 @@ class WebAssembly case typeof(double): s.Append('d'); case typeof(c_ulong): fallthrough; - case typeof(c_ulonglong): - case typeof(c_longlong): + case typeof(c_ulonglong): fallthrough; + case typeof(c_longlong): fallthrough; case typeof(c_long): s.Append('j'); default: @@ -63,7 +63,7 @@ class WebAssembly int count = t.FieldCount; for(int i = 0; i < count; i++) { - var type = t.GetField(i).Get().FieldType; + var type = t.GetField(i).Get().FieldType; GetArgSigInternal(type, s); } }else