From owner-svn-src-head@FreeBSD.ORG Fri May 10 14:08:12 2013 Return-Path: Delivered-To: svn-src-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id EC15C2E8; Fri, 10 May 2013 14:08:12 +0000 (UTC) (envelope-from theraven@FreeBSD.org) Received: from theravensnest.org (theraven.freebsd.your.org [216.14.102.27]) by mx1.freebsd.org (Postfix) with ESMTP id BF722BDA; Fri, 10 May 2013 14:08:12 +0000 (UTC) Received: from [172.20.9.19] ([12.202.122.2]) (authenticated bits=0) by theravensnest.org (8.14.5/8.14.5) with ESMTP id r4AE85Sr039804 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Fri, 10 May 2013 14:08:06 GMT (envelope-from theraven@FreeBSD.org) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) Subject: Re: svn commit: r250430 - head/sbin/dmesg From: David Chisnall In-Reply-To: Date: Fri, 10 May 2013 10:08:05 -0400 Content-Transfer-Encoding: quoted-printable Message-Id: References: <201305100342.r4A3gmc9080595@svn.freebsd.org> <20130510074235.GA19945@FreeBSD.org> <20130510133637.GA1679@FreeBSD.org> To: Eitan Adler X-Mailer: Apple Mail (2.1499) Cc: svn-src-head@FreeBSD.org, Alexey Dokuchaev , src-committers@FreeBSD.org, svn-src-all@FreeBSD.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 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, 10 May 2013 14:08:13 -0000 On 10 May 2013, at 10:01, Eitan Adler wrote: > I thought style(9) disliked the leading (void) but I could be wrong. The cast to (void) tells the compiler that you are ignoring the return = result. Without it, you will introduce new warnings and break the build = on certain compiler versions with -Werror. David