summaryrefslogtreecommitdiff
path: root/src/tools/wasm-interp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/wasm-interp.cc')
-rw-r--r--src/tools/wasm-interp.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/wasm-interp.cc b/src/tools/wasm-interp.cc
index 3f3cda4c..160952ce 100644
--- a/src/tools/wasm-interp.cc
+++ b/src/tools/wasm-interp.cc
@@ -142,8 +142,8 @@ static wabt::Result ReadModule(const char* module_filename,
const bool kFailOnCustomSectionError = true;
ReadBinaryOptions options(s_features, s_log_stream.get(), kReadDebugNames,
kStopOnFirstError, kFailOnCustomSectionError);
- result = ReadBinaryInterp(env, file_data.data(), file_data.size(),
- &options, error_handler, out_module);
+ result = ReadBinaryInterp(env, file_data.data(), file_data.size(), options,
+ error_handler, out_module);
if (Succeeded(result)) {
if (s_verbose) {