summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/wasm-interpreter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h
index 2be386f95..a4af4729d 100644
--- a/src/wasm-interpreter.h
+++ b/src/wasm-interpreter.h
@@ -109,7 +109,7 @@ public:
}
}
- Literal callExport(IString name, LiteralList& arguments) {
+ Literal callExport(Name name, LiteralList& arguments) {
Export *export_ = wasm.getExport(name);
if (!export_) externalInterface->trap("callExport not found");
return callFunction(export_->value, arguments);