public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] [XFS] indent an if statement
@ 2014-05-21 12:27 Dan Carpenter
  2014-05-21 12:44 ` Eric Sandeen
  2014-05-21 14:29 ` Christoph Hellwig
  0 siblings, 2 replies; 8+ messages in thread
From: Dan Carpenter @ 2014-05-21 12:27 UTC (permalink / raw)
  To: Dave Chinner; +Cc: kernel-janitors, xfs

The "n += 32;" goes with the if statement on the line before so it
should be indented.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

diff --git a/fs/xfs/xfs_bit.h b/fs/xfs/xfs_bit.h
index f1e3c90..f685942 100644
--- a/fs/xfs/xfs_bit.h
+++ b/fs/xfs/xfs_bit.h
@@ -67,7 +67,7 @@ static inline int xfs_lowbit64(__uint64_t v)
 	} else {	/* upper bits */
 		w = (__uint32_t)(v >> 32);
 		if (w && (n = ffs(w)))
-		n += 32;
+			n += 32;
 	}
 	return n - 1;
 }

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-05-22 14:04 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-21 12:27 [patch] [XFS] indent an if statement Dan Carpenter
2014-05-21 12:44 ` Eric Sandeen
2014-05-21 14:29 ` Christoph Hellwig
2014-05-21 14:35   ` Dan Carpenter
2014-05-21 16:50     ` walter harms
2014-05-22 10:01       ` Christoph Hellwig
2014-05-22 13:31         ` Mark Tinguely
2014-05-22 14:04   ` [patch v2] [XFS] small cleanup in xfs_lowbit64() Dan Carpenter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox