From owner-svn-src-head@freebsd.org Sat Oct 1 00:18:59 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 69431C04D9D; Sat, 1 Oct 2016 00:18:59 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail109.syd.optusnet.com.au (mail109.syd.optusnet.com.au [211.29.132.80]) by mx1.freebsd.org (Postfix) with ESMTP id 30F1D1020; Sat, 1 Oct 2016 00:18:58 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from besplex.bde.org (c110-21-100-78.carlnfd1.nsw.optusnet.com.au [110.21.100.78]) by mail109.syd.optusnet.com.au (Postfix) with ESMTPS id 525D7D619A3; Sat, 1 Oct 2016 10:18:50 +1000 (AEST) Date: Sat, 1 Oct 2016 10:18:49 +1000 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: Toomas Soome cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r306538 - head/lib/libstand In-Reply-To: <201609302319.u8UNJ8oh087617@repo.freebsd.org> Message-ID: <20161001101040.Y3821@besplex.bde.org> References: <201609302319.u8UNJ8oh087617@repo.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Optus-CM-Score: 0 X-Optus-CM-Analysis: v=2.1 cv=EfU1O6SC c=1 sm=1 tr=0 a=uGjuzT6u7JdBDS7kH8taPg==:117 a=uGjuzT6u7JdBDS7kH8taPg==:17 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=kj9zAlcOel0A:10 a=6I5d2MoRAAAA:8 a=nXofmzNChi7GuVKgM7EA:9 a=BSl6DtumEp4S0mM4:21 a=CWG8BAMRxDi_WXHg:21 a=CjuIK1q_8ugA:10 a=IjZwj45LgO3ly-622nXo:22 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 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: Sat, 01 Oct 2016 00:18:59 -0000 On Fri, 30 Sep 2016, Toomas Soome wrote: > Author: tsoome > Date: Fri Sep 30 23:19:08 2016 > New Revision: 306538 > URL: https://svnweb.freebsd.org/changeset/base/306538 > > Log: > cstyle fix of cd9660_open in libstand > > rS306534 did create bad cstyle by my mistake, correcting it. > > Modified: head/lib/libstand/cd9660.c > ============================================================================== > --- head/lib/libstand/cd9660.c Fri Sep 30 23:01:37 2016 (r306537) > +++ head/lib/libstand/cd9660.c Fri Sep 30 23:19:08 2016 (r306538) > @@ -356,11 +356,11 @@ cd9660_open(const char *path, struct ope > > /* if the new block is zero length, its padding */ > if (isonum_711(dp->length) == 0) { > - /* skip to next block, if any */ > - off = boff * ISO_DEFAULT_BLOCK_SIZE; > - continue; > + /* skip to next block, if any */ > + off = boff * ISO_DEFAULT_BLOCK_SIZE; > + continue; > } else { > - off += isonum_711(dp->length); > + off += isonum_711(dp->length); > } > } > if (off >= dsize) { Fixing the remaining style bugs gives: [Delete blank line here.] /* If the new block has zero length, it is padding. */ if (isonum_711(dp->length) == 0) { /* Skip to next block, if any. */ off = boff * ISO_DEFAULT_BLOCK_SIZE; continue; } off += isonum_711(dp->length); Bruce