Fix writev func

This commit is contained in:
世界 2022-07-09 17:08:27 +08:00
parent 8843420c78
commit 3e39af6035
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ import (
"unsafe"
)
func WriteV(fd uintptr, data ...[]byte) (int, error) {
func WriteV(fd uintptr, data [][]byte) (int, error) {
iovecs := make([]syscall.Iovec, len(data))
for i := range iovecs {
iovecs[i].Base = &data[i][0]

View file

@ -4,7 +4,7 @@ import (
"syscall"
)
func WriteV(fd uintptr, data ...[]byte) (int, error) {
func WriteV(fd uintptr, data [][]byte) (int, error) {
var n uint32
buffers := make([]*syscall.WSABuf, len(data))
for i, buf := range data {