mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-01 19:21:19 +00:00
Merge #813
813: Fix test printf typo r=Hywan a=ethanfrey <!-- Prior to submitting a PR, review the CONTRIBUTING.md document for recommendations on how to test: https://github.com/wasmerio/wasmer/blob/master/CONTRIBUTING.md#pull-requests --> # Description <!-- Provide details regarding the change including motivation, links to related issues, and the context of the PR. --> Fixes #812 `%lld -> %ld fixes cargo test compile error` # Review - [ ] Create a short description of the the change in the CHANGELOG.md file Co-authored-by: Ethan Frey <ethanfrey@users.noreply.github.com> Co-authored-by: Ivan Enderlin <ivan.enderlin@hoa-project.net>
This commit is contained in:
commit
aa67dbee90
@ -242,7 +242,7 @@ int main()
|
||||
|
||||
wasmer_result_t call_result = wasmer_export_func_call(exported_function, inputs, inputs_arity, outputs, outputs_arity);
|
||||
|
||||
printf("Result: %lld\n", outputs[0].value.I64);
|
||||
printf("Result: %ld\n", outputs[0].value.I64);
|
||||
|
||||
assert(outputs[0].value.I64 == 7);
|
||||
assert(call_result == WASMER_OK);
|
||||
|
Loading…
x
Reference in New Issue
Block a user