Skip to content

Commit b8d2599

Browse files
committed
f
1 parent a057ec9 commit b8d2599

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/binaryen.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ ExecutionResult BinaryenEngine::execute(
498498
wasm::ModuleInstance instance(module, &interface);
499499

500500
try {
501-
instance.callExport(Name("main"), LiteralList{});
501+
instance.callExport(wasm::Name("main"), wasm::LiteralList{});
502502
} catch (EndExecution const&) {
503503
// This exception is ignored here because we consider it to be a success.
504504
// It is only a clutch for POSIX style exit()

0 commit comments

Comments
 (0)