From owner-svn-src-head@FreeBSD.ORG Sun Sep 16 17:30:21 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88B2F106564A; Sun, 16 Sep 2012 17:30:21 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 15B938FC14; Sun, 16 Sep 2012 17:30:19 +0000 (UTC) Received: by bkcje9 with SMTP id je9so1948733bkc.13 for ; Sun, 16 Sep 2012 10:30:18 -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=IrcpWgGXOGh/xt8Dc5mdEojijdCQWSH+FnOmVD4PjoU=; b=sCOA5V0SJbO8IrEghZhRGXsl7FxPytJnWU1QQ8vqo+J7tIakzTMVRy7dxNhNepHJMm /3gaVey1D1tL726YqV9+dhaSRiud1Lh0CMm1Ko6kT3fqefPz5xsPfyQCITZ8dzAyFjRQ kGF3npux8RjEy1aGcnB40X0LnI06ucLk8kuOkNEODS3wurgyiZ86fdCucq/rtj0luO6Z zo7QugkVdUxjI70iLnt1ZYFmVy8Z17oHNEKB2OK77cEl2yMwbZRfgOXcIuIdAy9Qezfn UbGjeyOLPt5PUrBabYeLeWt5sgCXUAZM5RbDO2UQ6p4q2D5q0j9Q6Z1jO1Xz3C8NtNFX Pt3w== MIME-Version: 1.0 Received: by 10.204.129.14 with SMTP id m14mr3641207bks.7.1347816618652; Sun, 16 Sep 2012 10:30:18 -0700 (PDT) Received: by 10.204.10.141 with HTTP; Sun, 16 Sep 2012 10:30:18 -0700 (PDT) Received: by 10.204.10.141 with HTTP; Sun, 16 Sep 2012 10:30:18 -0700 (PDT) In-Reply-To: <38FB39C4-7626-4D54-8197-E302BB9452D2@FreeBSD.org> References: <201209160755.q8G7tnMH036332@svn.freebsd.org> <20120916092818.GA81952@FreeBSD.org> <38FB39C4-7626-4D54-8197-E302BB9452D2@FreeBSD.org> Date: Sun, 16 Sep 2012 18:30:18 +0100 Message-ID: From: Chris Rees To: David Chisnall , Bruce Evans 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, Alexey Dokuchaev 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 17:30:21 -0000 On 16 Sep 2012 16:19, "David Chisnall" wrote: > > On 16 Sep 2012, at 10:37, Chris Rees wrote: > > > Actually: > > > > 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. Please fix the style man page then, and make sure bde approves! Chris