Commit 6fbaad87 authored by Fabian Frederick's avatar Fabian Frederick Committed by Jan Kara

udf: remove else after return in __load_block_bitmap()

else after return is not needed.
Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Signed-off-by: default avatarJan Kara <jack@suse.cz>
parent f4a45c99
...@@ -63,15 +63,14 @@ static int __load_block_bitmap(struct super_block *sb, ...@@ -63,15 +63,14 @@ static int __load_block_bitmap(struct super_block *sb,
block_group, nr_groups); block_group, nr_groups);
} }
if (bitmap->s_block_bitmap[block_group]) { if (bitmap->s_block_bitmap[block_group])
return block_group; return block_group;
} else {
retval = read_block_bitmap(sb, bitmap, block_group, retval = read_block_bitmap(sb, bitmap, block_group, block_group);
block_group); if (retval < 0)
if (retval < 0) return retval;
return retval;
return block_group; return block_group;
}
} }
static inline int load_block_bitmap(struct super_block *sb, static inline int load_block_bitmap(struct super_block *sb,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment