mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
Correct the type for uio_resid.
MFC after: 3 days
This commit is contained in:
parent
b4eacea680
commit
40c05da5e0
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=205416
@ -25,7 +25,7 @@
|
||||
.\"
|
||||
.\" $FreeBSD$
|
||||
.\"
|
||||
.Dd October 30, 2007
|
||||
.Dd March 21, 2010
|
||||
.Os
|
||||
.Dt UIO 9
|
||||
.Sh NAME
|
||||
@ -41,7 +41,7 @@ struct uio {
|
||||
struct iovec *uio_iov; /* scatter/gather list */
|
||||
int uio_iovcnt; /* length of scatter/gather list */
|
||||
off_t uio_offset; /* offset in target object */
|
||||
int uio_resid; /* remaining bytes to copy */
|
||||
ssize_t uio_resid; /* remaining bytes to copy */
|
||||
enum uio_seg uio_segflg; /* address space */
|
||||
enum uio_rw uio_rw; /* operation */
|
||||
struct thread *uio_td; /* owner */
|
||||
|
Loading…
Reference in New Issue
Block a user