From owner-svn-src-head@FreeBSD.ORG Fri Jun 15 12:32:25 2012 Return-Path: Delivered-To: svn-src-head@FreeBSD.org Received: from mx1.freebsd.org (unknown [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A5947106566B; Fri, 15 Jun 2012 12:32:25 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail02.syd.optusnet.com.au (mail02.syd.optusnet.com.au [211.29.132.183]) by mx1.freebsd.org (Postfix) with ESMTP id 228848FC08; Fri, 15 Jun 2012 12:32:24 +0000 (UTC) Received: from c122-106-171-232.carlnfd1.nsw.optusnet.com.au (c122-106-171-232.carlnfd1.nsw.optusnet.com.au [122.106.171.232]) by mail02.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id q5FCWFiu010570 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 15 Jun 2012 22:32:17 +1000 Date: Fri, 15 Jun 2012 22:32:15 +1000 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: Pawel Jakub Dawidek In-Reply-To: <201206151000.q5FA0TQM061466@svn.freebsd.org> Message-ID: <20120615222251.T1609@besplex.bde.org> References: <201206151000.q5FA0TQM061466@svn.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r237133 - head/sys/kern X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 15 Jun 2012 12:32:25 -0000 On Fri, 15 Jun 2012, Pawel Jakub Dawidek wrote: > Log: > One more attempt to make prototypes formated according to style(9), Thanks. The prototypes look OK now. > which > holefully recovers from the "worse than useless" state. Er, my "worse than useless" description wasn't about prototypes. It was about putting a tab in the middle of type a declaration. The tab lines up some identifier, but this is worse than useless since it makes things look like they are lined up, but when you look closer you see that the wrong things are lined up. Example: struct fstat_args { int fd; struct stat *sb; }; Bruce