| To: | Dave Chinner <david@xxxxxxxxxxxxx> |
|---|---|
| Subject: | [patch] [XFS] indent an if statement |
| From: | Dan Carpenter <dan.carpenter@xxxxxxxxxx> |
| Date: | Wed, 21 May 2014 15:27:46 +0300 |
| Cc: | xfs@xxxxxxxxxxx, kernel-janitors@xxxxxxxxxxxxxxx |
| Delivered-to: | xfs@xxxxxxxxxxx |
| User-agent: | Mutt/1.5.21 (2010-09-15) |
The "n += 32;" goes with the if statement on the line before so it
should be indented.
Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx>
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;
}
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH 0/5] xfstests: fixes for the free inode btree, Brian Foster |
|---|---|
| Next by Date: | Re: [patch] [XFS] indent an if statement, Eric Sandeen |
| Previous by Thread: | a maybe silly question about xfsdump, Marko Weber|8000 |
| Next by Thread: | Re: [patch] [XFS] indent an if statement, Eric Sandeen |
| Indexes: | [Date] [Thread] [Top] [All Lists] |