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
This commit is contained in:
Toomas Soome 2016-09-30 23:19:08 +00:00
parent c038bae74c
commit 6a21906bea
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=306538

View File

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