summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2010-03-21 16:14:19 +0000
committerkib <kib@FreeBSD.org>2010-03-21 16:14:19 +0000
commit03d4d51217de33f07e89103d628ac220fa89d292 (patch)
tree2d9ee23765eae58035c496b2347169c31a6d5d09
parent2122ae15e70fb63714472344edce419cb7aaf3f8 (diff)
downloadFreeBSD-src-03d4d51217de33f07e89103d628ac220fa89d292.zip
FreeBSD-src-03d4d51217de33f07e89103d628ac220fa89d292.tar.gz
Correct the type for uio_resid.
MFC after: 3 days
-rw-r--r--share/man/man9/uio.94
1 files changed, 2 insertions, 2 deletions
diff --git a/share/man/man9/uio.9 b/share/man/man9/uio.9
index b23e9fd..b5c12cbe 100644
--- a/share/man/man9/uio.9
+++ b/share/man/man9/uio.9
@@ -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 */
OpenPOWER on IntegriCloud