chore(runtime-c-api) Fix CS.

This commit is contained in:
Ivan Enderlin
2020-01-10 15:12:56 +01:00
parent ec378597f1
commit e913e8928f

View File

@ -456,6 +456,7 @@ pub unsafe extern "C" fn wasmer_export_func_call(
let instance = &*named_export.instance; let instance = &*named_export.instance;
let result = instance.call(&named_export.name, &params[..]); let result = instance.call(&named_export.name, &params[..]);
match result { match result {
Ok(results_vec) => { Ok(results_vec) => {
if !results_vec.is_empty() { if !results_vec.is_empty() {