Skip to content

Commit

Permalink
missed one
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Nelson committed Nov 30, 2024
1 parent 7374c02 commit 807ae94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/wasmex/src/component_instance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pub fn component_call_function<'a>(
let _ = function.post_return(&mut *component_store);
Ok(encode_result(env, result))
}
Err(err) => return Ok(env.error_tuple(format!("Error executing function: {err}"))),
Err(err) => Ok(env.error_tuple(format!("Error executing function: {err}"))),
}
}

Expand Down

0 comments on commit 807ae94

Please sign in to comment.