svn commit: r205416 - head/share/man/man9

Konstantin Belousov kib at FreeBSD.org
Sun Mar 21 16:14:20 UTC 2010


Author: kib
Date: Sun Mar 21 16:14:19 2010
New Revision: 205416
URL: http://svn.freebsd.org/changeset/base/205416

Log:
  Correct the type for uio_resid.
  
  MFC after:	3 days

Modified:
  head/share/man/man9/uio.9

Modified: head/share/man/man9/uio.9
==============================================================================
--- head/share/man/man9/uio.9	Sun Mar 21 15:54:07 2010	(r205415)
+++ head/share/man/man9/uio.9	Sun Mar 21 16:14:19 2010	(r205416)
@@ -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 */


More information about the svn-src-head mailing list