ocfs2: Silence a gcc warning.
ocfs2_block_group_claim_bits() is never called with min_bits=0, but we
shouldn't leave status undefined if it ever is.
Signed-off-by: Joel Becker <joel.becker@oracle.com>
diff --git a/fs/ocfs2/suballoc.c b/fs/ocfs2/suballoc.c
index a327c80..f4c2a9e 100644
--- a/fs/ocfs2/suballoc.c
+++ b/fs/ocfs2/suballoc.c
@@ -484,7 +484,7 @@
unsigned int min_bits,
u32 *bit_off, u32 *num_bits)
{
- int status;
+ int status = 0;
while (min_bits) {
status = ocfs2_claim_clusters(handle, ac, min_bits,