From e8a918e2e5f37e0d9d57d876eb036800b96ed56d Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Wed, 18 Sep 2019 23:25:35 +0200 Subject: [PATCH] %lld -> %ld fixes cargo test compile error --- lib/runtime-c-api/tests/test-exports.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/runtime-c-api/tests/test-exports.c b/lib/runtime-c-api/tests/test-exports.c index 3af813d0e..893174908 100644 --- a/lib/runtime-c-api/tests/test-exports.c +++ b/lib/runtime-c-api/tests/test-exports.c @@ -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);