From owner-svn-src-all@FreeBSD.ORG Sun Mar 21 16:14:20 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 285D41065672; Sun, 21 Mar 2010 16:14:20 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1862E8FC26; Sun, 21 Mar 2010 16:14:20 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o2LGEJSH051378; Sun, 21 Mar 2010 16:14:19 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o2LGEJ6K051376; Sun, 21 Mar 2010 16:14:19 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201003211614.o2LGEJ6K051376@svn.freebsd.org> From: Konstantin Belousov Date: Sun, 21 Mar 2010 16:14:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r205416 - head/share/man/man9 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Mar 2010 16:14:20 -0000 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 */