diff -r 270cc4dda0c5 -r 8d3354485fc3 vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go --- a/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go Thu Sep 22 16:32:45 2022 +0200 +++ b/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go Thu Sep 22 16:33:34 2022 +0200 @@ -57,7 +57,7 @@ func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno) func PtraceIO(req int, pid int, addr uintptr, out []byte, countin int) (count int, err error) { - ioDesc := PtraceIoDesc{Op: int32(req), Offs: (*byte)(unsafe.Pointer(addr)), Addr: (*byte)(unsafe.Pointer(&out[0])), Len: uint32(countin)} + ioDesc := PtraceIoDesc{Op: int32(req), Offs: uintptr(unsafe.Pointer(addr)), Addr: uintptr(unsafe.Pointer(&out[0])), Len: uint32(countin)} err = ptrace(PT_IO, pid, uintptr(unsafe.Pointer(&ioDesc)), 0) return int(ioDesc.Len), err }