svn commit: r301576 - head/sys/fs/ext2fs

Kevin Lo kevlo at FreeBSD.org
Wed Jun 8 02:39:11 UTC 2016


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;
 		}


More information about the svn-src-all mailing list