From owner-svn-src-all@FreeBSD.ORG Sun Sep 16 10:07:36 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9CF28106566C; Sun, 16 Sep 2012 10:07:36 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3B8598FC14; Sun, 16 Sep 2012 10:07:34 +0000 (UTC) Received: by lbbgg13 with SMTP id gg13so4415905lbb.13 for ; Sun, 16 Sep 2012 03:07:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=QOYHahmx4bH7EJO0PHaPl1JygXdI5ZAsaxgC8wS3kJA=; b=G4ASdw422HMrkCuHLk2CpAwRtY2AjZxlPLIELWag0HWZxCH7Zh1SeSE7lel1Vv7i/W A47RmlZNYIWPuR7mk2MdBaNWXuPIXIf8wu/M7UFbz0kzGM3hhbkO+H3elf+M9HCdUMN1 GAqWgFNmcxLer5dxhplRAXfn9BkqAKt8bredL3m/30kmD3nnj9dz8kDsTsNAaCinjalL NsdfO8Pg6WgIQXvyiIPxes8v3dcZOPqgRlNGi0ftvvV27MScVdcEOKn5LQWIWVfrrO9p AqCKiAmVRpZ7b9XLA4fc1Y/lV0pFzrGbgoF1ttI/YAVagsOA0pgaaGV7QsoHAhv+THwI BucA== MIME-Version: 1.0 Received: by 10.152.162.10 with SMTP id xw10mr7009337lab.12.1347790054001; Sun, 16 Sep 2012 03:07:34 -0700 (PDT) Received: by 10.112.43.199 with HTTP; Sun, 16 Sep 2012 03:07:33 -0700 (PDT) Received: by 10.112.43.199 with HTTP; Sun, 16 Sep 2012 03:07:33 -0700 (PDT) In-Reply-To: <20120916095355.GA83285@FreeBSD.org> References: <201209160755.q8G7tnMH036332@svn.freebsd.org> <20120916092818.GA81952@FreeBSD.org> <20120916095355.GA83285@FreeBSD.org> Date: Sun, 16 Sep 2012 11:07:33 +0100 Message-ID: From: Chris Rees To: Alexey Dokuchaev Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: svn-src-head@freebsd.org, Andrew Turner , svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r240549 - head/sys/arm/tegra X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Sep 2012 10:07:36 -0000 On 16 Sep 2012 10:53, "Alexey Dokuchaev" wrote: > > 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 > That's not what man style says... Chris