svn commit: r306538 - head/lib/libstand

Toomas Soome tsoome at FreeBSD.org
Fri Sep 30 23:19:09 UTC 2016


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) {


More information about the svn-src-head mailing list