Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 Jun 2016 02:39:10 +0000 (UTC)
From:      Kevin Lo <kevlo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r301576 - head/sys/fs/ext2fs
Message-ID:  <201606080239.u582dABV087121@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevlo
Date: Wed Jun  8 02:39:10 2016
New Revision: 301576
URL: https://svnweb.freebsd.org/changeset/base/301576

Log:
  Fix a style bug.

Modified:
  head/sys/fs/ext2fs/ext2_bmap.c

Modified: head/sys/fs/ext2fs/ext2_bmap.c
==============================================================================
--- head/sys/fs/ext2fs/ext2_bmap.c	Wed Jun  8 02:37:23 2016	(r301575)
+++ head/sys/fs/ext2fs/ext2_bmap.c	Wed Jun  8 02:39:10 2016	(r301576)
@@ -118,7 +118,7 @@ ext4_bmapext(struct vnode *vp, int32_t b
 		if (runb != NULL)
 			*runb = lbn - path.ep_sparse_ext.e_blk;
 	} else {
-		if ( path.ep_ext == NULL) {
+		if (path.ep_ext == NULL) {
 			error = EIO;
 			goto out;
 		}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606080239.u582dABV087121>