summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2022-08-23 15:02:50 -0700
committerGitHub <noreply@github.com>2022-08-23 15:02:50 -0700
commit7a1d82605b96f07a6a576b563b39acb536db4069 (patch)
treeed3b349cf409dce08e9c688193cb895bc09b72e4
parent4b9a35c3c74766592a31adf843eee15f38364eb1 (diff)
downloadwabt-7a1d82605b96f07a6a576b563b39acb536db4069.tar.gz
wabt-7a1d82605b96f07a6a576b563b39acb536db4069.tar.bz2
wabt-7a1d82605b96f07a6a576b563b39acb536db4069.zip
Update declaration of wasm_rt_get/set_unwind_target. NFC (#1967)
This matches how they are declared in the header file.
-rw-r--r--wasm2c/wasm-rt-impl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wasm2c/wasm-rt-impl.c b/wasm2c/wasm-rt-impl.c
index 96b3b395..e9f29e00 100644
--- a/wasm2c/wasm-rt-impl.c
+++ b/wasm2c/wasm-rt-impl.c
@@ -143,11 +143,11 @@ WASM_RT_NO_RETURN void wasm_rt_throw(void) {
WASM_RT_LONGJMP(*g_unwind_target, WASM_RT_TRAP_UNCAUGHT_EXCEPTION);
}
-jmp_buf* wasm_rt_get_unwind_target(void) {
+WASM_RT_UNWIND_TARGET* wasm_rt_get_unwind_target(void) {
return g_unwind_target;
}
-void wasm_rt_set_unwind_target(jmp_buf* target) {
+void wasm_rt_set_unwind_target(WASM_RT_UNWIND_TARGET* target) {
g_unwind_target = target;
}