Date: Fri, 30 Sep 2016 23:19:08 +0000 (UTC) From: Toomas Soome <tsoome@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r306538 - head/lib/libstand Message-ID: <201609302319.u8UNJ8oh087617@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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. Reviewed by: allanjude Approved by: allanjude (mentor) Differential Revision: https://reviews.freebsd.org/D8103 Modified: head/lib/libstand/cd9660.c 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) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609302319.u8UNJ8oh087617>