aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdir Kuhn <adirkuhn@gmail.com>2015-05-01 03:25:27 +0000
committerJan Kara <jack@suse.cz>2015-05-18 11:23:08 +0200
commit4649f6b36214bd0707eda6e28afd594db4e19f98 (patch)
treec0e31cd2174f4942cffe8e1b323c305a26288557
parentquota: Update documentation (diff)
downloadlinux-dev-4649f6b36214bd0707eda6e28afd594db4e19f98.tar.xz
linux-dev-4649f6b36214bd0707eda6e28afd594db4e19f98.zip
fs: ext3: super: fixed a space coding style issue
Fixed a coding style issue Signed-off-by: Adir Kuhn <adirkuhn@gmail.com> Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to '')
-rw-r--r--fs/ext3/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext3/super.c b/fs/ext3/super.c
index a9312f0a54e5..5ed0044fbb37 100644
--- a/fs/ext3/super.c
+++ b/fs/ext3/super.c
@@ -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);