diff options
author | Casper Beyer <caspervonb@pm.me> | 2020-07-06 09:38:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-05 21:38:48 -0400 |
commit | 714b89437062f7181e8d6f7c30663c7c69d02920 (patch) | |
tree | c02bc403b3864d8b73fbfe7e5071bfa83dc08910 | |
parent | 3b4260dc54237070e28f31e6253f3fa125153638 (diff) |
fix(std/wasi): return errno::success from fd_tell (#6636)
-rw-r--r-- | std/wasi/snapshot_preview1.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/wasi/snapshot_preview1.ts b/std/wasi/snapshot_preview1.ts index 72ddd5d23..5a526d408 100644 --- a/std/wasi/snapshot_preview1.ts +++ b/std/wasi/snapshot_preview1.ts @@ -934,7 +934,7 @@ export default class Module { return ERRNO_INVAL; } - return ERRNO_NOSYS; + return ERRNO_SUCCESS; }, fd_write: ( |