From 7b8df5f8baa2b60c495a66abcbb3de54d8eea39d Mon Sep 17 00:00:00 2001 From: Tyler Rockwood Date: Thu, 28 Sep 2023 18:10:37 -0500 Subject: [PATCH] c-api: Correct wasmtime_module_image_range type --- crates/c-api/include/wasmtime/module.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/c-api/include/wasmtime/module.h b/crates/c-api/include/wasmtime/module.h index 8eca72a4899e..222239e81f66 100644 --- a/crates/c-api/include/wasmtime/module.h +++ b/crates/c-api/include/wasmtime/module.h @@ -158,7 +158,7 @@ WASM_API_EXTERN wasmtime_error_t *wasmtime_module_deserialize_file( * For more details see: https://docs.wasmtime.dev/api/wasmtime/struct.Module.html#method.image_range */ WASM_API_EXTERN void wasmtime_module_image_range( - const wasm_module_t *module, + const wasmtime_module_t *module, size_t *start, size_t *end );