Browse Source

Fix typo in method call.

pull/1411/head
Peter Huene 5 years ago
parent
commit
183aa9af4c
No known key found for this signature in database GPG Key ID: E1D265D820213D6A
  1. 2
      crates/misc/dotnet/src/Function.cs

2
crates/misc/dotnet/src/Function.cs

@ -267,7 +267,7 @@ namespace Wasmtime
{
for (int i = 0; i < tuple.Length; ++i)
{
SetResults(tuple[i], &results[i]);
SetResult(tuple[i], &results[i]);
}
}
}

Loading…
Cancel
Save