From: Kaho Ng Date: Wed, 10 Aug 2016 01:29:36 +0000 (+1000) Subject: xfs: indentation fix in xfs_btree_get_iroot() X-Git-Tag: v4.8.0-rc1~100 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dcaff8acc8dd3cd4a28f9b4cb1e53598f60bf96a;p=thirdparty%2Fxfsprogs-dev.git xfs: indentation fix in xfs_btree_get_iroot() Source kernel commit: fbfb24bf105449eab1339c20f6f6b81d02c59c13 The indentation in this function is different from the other functions. Those spacebars are converted to tabs to improve readability. Signed-off-by: Kaho Ng Reviewed-by: Carlos Maiolino Signed-off-by: Dave Chinner --- diff --git a/libxfs/xfs_btree.c b/libxfs/xfs_btree.c index 18fb16577..ea755062d 100644 --- a/libxfs/xfs_btree.c +++ b/libxfs/xfs_btree.c @@ -539,12 +539,12 @@ xfs_btree_ptr_addr( */ STATIC struct xfs_btree_block * xfs_btree_get_iroot( - struct xfs_btree_cur *cur) + struct xfs_btree_cur *cur) { - struct xfs_ifork *ifp; + struct xfs_ifork *ifp; - ifp = XFS_IFORK_PTR(cur->bc_private.b.ip, cur->bc_private.b.whichfork); - return (struct xfs_btree_block *)ifp->if_broot; + ifp = XFS_IFORK_PTR(cur->bc_private.b.ip, cur->bc_private.b.whichfork); + return (struct xfs_btree_block *)ifp->if_broot; } /*