From owner-svn-src-head@FreeBSD.ORG Sun Sep 16 09:53:56 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 184941065672; Sun, 16 Sep 2012 09:53:55 +0000 (UTC) Date: Sun, 16 Sep 2012 09:53:55 +0000 From: Alexey Dokuchaev To: Chris Rees Message-ID: <20120916095355.GA83285@FreeBSD.org> References: <201209160755.q8G7tnMH036332@svn.freebsd.org> <20120916092818.GA81952@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Cc: Andrew Turner , svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@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 09:53:56 -0000 On Sun, Sep 16, 2012 at 10:37:56AM +0100, Chris Rees wrote: > On 16 September 2012 10:28, Alexey Dokuchaev wrote: > > I thought preferred and more style(9) compliant way to code [empty > > endless loop] is: > > > > for (;;) > > continue; > > Actually: > > for (;;) > ; Explicit "continue" is supposed to tell reviewer that original author did not make a typo, but indeed knew what he was doing. Lonely semicolon is too ambiguous in this case. ./danfe