vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go
changeset 262 8d3354485fc3
parent 260 445e01aede7e
--- a/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go	Thu Sep 22 16:32:45 2022 +0200
+++ b/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.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: uint64(countin)}
+	ioDesc := PtraceIoDesc{Op: int32(req), Offs: uintptr(unsafe.Pointer(addr)), Addr: uintptr(unsafe.Pointer(&out[0])), Len: uint64(countin)}
 	err = ptrace(PT_IO, pid, uintptr(unsafe.Pointer(&ioDesc)), 0)
 	return int(ioDesc.Len), err
 }