mirror of
https://github.com/golang/go
synced 2024-11-20 10:54:49 -07:00
syscall: fix build
I missed the API change in the last FreeBSD CL, but the tool caught it. TBR=bradfitz CC=golang-dev https://golang.org/cl/6331063
This commit is contained in:
parent
abb3c0618b
commit
596762e9a1
@ -89,9 +89,9 @@ func Pipe(p []int) (err error) {
|
||||
return
|
||||
}
|
||||
|
||||
func Sendfile(outfd int, infd int, offset int64, count int) (written int, err error) {
|
||||
func Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
|
||||
var writtenOut uint64 = 0
|
||||
_, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(offset), uintptr(count), 0, uintptr(unsafe.Pointer(&writtenOut)), 0, 0, 0)
|
||||
_, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr(count), 0, uintptr(unsafe.Pointer(&writtenOut)), 0, 0, 0)
|
||||
|
||||
written = int(writtenOut)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user