From owner-svn-src-head@FreeBSD.ORG Sun Sep 16 15:18:22 2012 Return-Path: Delivered-To: svn-src-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1817A106566C; Sun, 16 Sep 2012 15:18:22 +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 D37F78FC0C; Sun, 16 Sep 2012 15:18:21 +0000 (UTC) Received: from [192.168.0.2] (cpc2-cmbg15-2-0-cust445.5-4.cable.virginmedia.com [86.26.13.190]) (authenticated bits=0) by theravensnest.org (8.14.5/8.14.5) with ESMTP id q8GFID3S051728 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES128-SHA bits=128 verify=NO); Sun, 16 Sep 2012 15:18:14 GMT (envelope-from theraven@FreeBSD.org) Mime-Version: 1.0 (Apple Message framework v1278) Content-Type: text/plain; charset=iso-8859-1 From: David Chisnall In-Reply-To: Date: Sun, 16 Sep 2012 16:18:08 +0100 Content-Transfer-Encoding: quoted-printable Message-Id: <38FB39C4-7626-4D54-8197-E302BB9452D2@FreeBSD.org> References: <201209160755.q8G7tnMH036332@svn.freebsd.org> <20120916092818.GA81952@FreeBSD.org> To: Chris Rees X-Mailer: Apple Mail (2.1278) Cc: Andrew Turner , svn-src-head@FreeBSD.org, Alexey Dokuchaev , src-committers@FreeBSD.org, svn-src-all@FreeBSD.org Subject: Re: svn commit: r240549 - head/sys/arm/tegra 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: Sun, 16 Sep 2012 15:18:22 -0000 On 16 Sep 2012, at 10:37, Chris Rees wrote: > Actually: >=20 > for (;;) > ; This form will generate a compiler warning, because it looks like a = missing loop body. You can silence the warning by this form: for (;;) {} This makes it clear that you have an explicit body containing no = statements. =20 David=