diff options
author | 2023-08-07 08:13:55 +0000 | |
---|---|---|
committer | 2023-08-07 08:13:55 +0000 | |
commit | 0242f03d36a519a90dcaa905e5d2e272f008512b (patch) | |
tree | 208e9c294e85b5ce32e120fabdd400925abb6d00 /vendor/golang.org/x/sys/unix/syscall_linux_loong64.go | |
parent | [chore]: Bump golang.org/x/image from 0.9.0 to 0.11.0 (#2074) (diff) | |
download | gotosocial-0242f03d36a519a90dcaa905e5d2e272f008512b.tar.xz |
[chore]: Bump golang.org/x/crypto from 0.11.0 to 0.12.0 (#2077)
Diffstat (limited to 'vendor/golang.org/x/sys/unix/syscall_linux_loong64.go')
-rw-r--r-- | vendor/golang.org/x/sys/unix/syscall_linux_loong64.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go b/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go index 69d2d7c3d..f6ab02ec1 100644 --- a/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go +++ b/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go @@ -28,7 +28,7 @@ func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err if timeout != nil { ts = &Timespec{Sec: timeout.Sec, Nsec: timeout.Usec * 1000} } - return Pselect(nfd, r, w, e, ts, nil) + return pselect6(nfd, r, w, e, ts, nil) } //sys sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) |