Skip to content

Commit

Permalink
fs: ext3: super: fixed a space coding style issue
Browse files Browse the repository at this point in the history
Fixed a coding style issue

Signed-off-by: Adir Kuhn <[email protected]>
Signed-off-by: Jan Kara <[email protected]>
  • Loading branch information
adirkuhn authored and jankara committed May 18, 2015
1 parent 18e25fa commit 4649f6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/ext3/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -1908,7 +1908,7 @@ static int ext3_fill_super (struct super_block *sb, void *data, int silent)
sbi->s_mount_state = le16_to_cpu(es->s_state);
sbi->s_addr_per_block_bits = ilog2(EXT3_ADDR_PER_BLOCK(sb));
sbi->s_desc_per_block_bits = ilog2(EXT3_DESC_PER_BLOCK(sb));
for (i=0; i < 4; i++)
for (i = 0; i < 4; i++)
sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
sbi->s_def_hash_version = es->s_def_hash_version;
i = le32_to_cpu(es->s_flags);
Expand Down

0 comments on commit 4649f6b

Please sign in to comment.