From owner-svn-src-head@freebsd.org Wed Jun 8 02:39:11 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 50FB9B6DCD9; Wed, 8 Jun 2016 02:39:11 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 23AC7183E; Wed, 8 Jun 2016 02:39:11 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u582dALo087122; Wed, 8 Jun 2016 02:39:10 GMT (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u582dABV087121; Wed, 8 Jun 2016 02:39:10 GMT (envelope-from kevlo@FreeBSD.org) Message-Id: <201606080239.u582dABV087121@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevlo set sender to kevlo@FreeBSD.org using -f From: Kevin Lo Date: Wed, 8 Jun 2016 02:39:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r301576 - head/sys/fs/ext2fs X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Jun 2016 02:39:11 -0000 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; }