summaryrefslogtreecommitdiff
path: root/chromium/v8/third_party/wasm-api/example/threads.c
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-01-20 13:40:20 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-01-22 12:41:23 +0000
commit7961cea6d1041e3e454dae6a1da660b453efd238 (patch)
treec0eeb4a9ff9ba32986289c1653d9608e53ccb444 /chromium/v8/third_party/wasm-api/example/threads.c
parentb7034d0803538058e5c9d904ef03cf5eab34f6ef (diff)
downloadqtwebengine-chromium-7961cea6d1041e3e454dae6a1da660b453efd238.tar.gz
BASELINE: Update Chromium to 78.0.3904.130
Change-Id: If185e0c0061b3437531c97c9c8c78f239352a68b Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/v8/third_party/wasm-api/example/threads.c')
-rw-r--r--chromium/v8/third_party/wasm-api/example/threads.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/chromium/v8/third_party/wasm-api/example/threads.c b/chromium/v8/third_party/wasm-api/example/threads.c
index 2f5b0f3c1fe..9f9d5894a66 100644
--- a/chromium/v8/third_party/wasm-api/example/threads.c
+++ b/chromium/v8/third_party/wasm-api/example/threads.c
@@ -52,7 +52,8 @@ void* run(void* args_abs) {
const wasm_extern_t* imports[] = {
wasm_func_as_extern(func), wasm_global_as_extern(global),
};
- own wasm_instance_t* instance = wasm_instance_new(store, module, imports);
+ own wasm_instance_t* instance =
+ wasm_instance_new(store, module, imports, NULL);
if (!instance) {
printf("> Error instantiating module!\n");
return NULL;