mirror of
https://github.com/denoland/deno.git
synced 2025-01-11 00:21:05 -05:00
fix(std/wasi): return errno::success from fd_tell (#6636)
This commit is contained in:
parent
3b4260dc54
commit
714b894370
1 changed files with 1 additions and 1 deletions
|
@ -934,7 +934,7 @@ export default class Module {
|
|||
return ERRNO_INVAL;
|
||||
}
|
||||
|
||||
return ERRNO_NOSYS;
|
||||
return ERRNO_SUCCESS;
|
||||
},
|
||||
|
||||
fd_write: (
|
||||
|
|
Loading…
Reference in a new issue