Switching to wsl
Some checks failed
Build / build (push) Successful in 10m47s
Publish Image / publish (push) Failing after 30s
Test / build (push) Successful in 11m0s

This commit is contained in:
Charles Smith
2024-03-31 19:35:04 -04:00
parent 7a32cce8a1
commit a85dc73954
15 changed files with 91 additions and 85 deletions

View File

@@ -28,7 +28,7 @@ func Seek(args ...object.Object) object.Object {
whence = int(args[2].(*object.Integer).Value)
}
offset, err := syscall.Seek(syscall.Handle(fd), offset, whence)
offset, err := syscall.Seek(fd, offset, whence)
if err != nil {
return newError("IOError: %s", err)
}