From owner-svn-src-head@FreeBSD.ORG Wed Apr 30 07:17:51 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A2755C62; Wed, 30 Apr 2014 07:17:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8F2C918D6; Wed, 30 Apr 2014 07:17:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3U7HpCv096942; Wed, 30 Apr 2014 07:17:51 GMT (envelope-from kevlo@svn.freebsd.org) Received: (from kevlo@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3U7HpOk096941; Wed, 30 Apr 2014 07:17:51 GMT (envelope-from kevlo@svn.freebsd.org) Message-Id: <201404300717.s3U7HpOk096941@svn.freebsd.org> From: Kevin Lo Date: Wed, 30 Apr 2014 07:17:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r265139 - head/share/man/man9 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Apr 2014 07:17:51 -0000 Author: kevlo Date: Wed Apr 30 07:17:51 2014 New Revision: 265139 URL: http://svnweb.freebsd.org/changeset/base/265139 Log: Change type from int to short to match function prototypes. Reviewed by: glebius Modified: head/share/man/man9/mbuf.9 Modified: head/share/man/man9/mbuf.9 ============================================================================== --- head/share/man/man9/mbuf.9 Wed Apr 30 07:09:16 2014 (r265138) +++ head/share/man/man9/mbuf.9 Wed Apr 30 07:17:51 2014 (r265139) @@ -64,23 +64,23 @@ .Fn M_TRAILINGSPACE "struct mbuf *mbuf" .Fn M_MOVE_PKTHDR "struct mbuf *to" "struct mbuf *from" .Fn M_PREPEND "struct mbuf *mbuf" "int len" "int how" -.Fn MCHTYPE "struct mbuf *mbuf" "u_int type" +.Fn MCHTYPE "struct mbuf *mbuf" "short type" .Ft int .Fn M_WRITABLE "struct mbuf *mbuf" .\" .Ss Mbuf allocation functions .Ft struct mbuf * -.Fn m_get "int how" "int type" +.Fn m_get "int how" "short type" .Ft struct mbuf * -.Fn m_getm "struct mbuf *orig" "int len" "int how" "int type" +.Fn m_getm "struct mbuf *orig" "int len" "int how" "short type" .Ft struct mbuf * .Fn m_getjcl "int how" "short type" "int flags" "int size" .Ft struct mbuf * .Fn m_getcl "int how" "short type" "int flags" .Ft struct mbuf * -.Fn m_getclr "int how" "int type" +.Fn m_getclr "int how" "short type" .Ft struct mbuf * -.Fn m_gethdr "int how" "int type" +.Fn m_gethdr "int how" "short type" .Ft struct mbuf * .Fn m_free "struct mbuf *mbuf" .Ft void