From 6a21906beaa79cc3fcbd24d777c833a15ea6b03c Mon Sep 17 00:00:00 2001 From: Toomas Soome Date: Fri, 30 Sep 2016 23:19:08 +0000 Subject: [PATCH] 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 --- lib/libstand/cd9660.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/libstand/cd9660.c b/lib/libstand/cd9660.c index e71d36f973c2..94d3ed29b1c5 100644 --- a/lib/libstand/cd9660.c +++ b/lib/libstand/cd9660.c @@ -356,11 +356,11 @@ cd9660_open(const char *path, struct open_file *f) /* 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) {