diff options
author | Zheng Liu <gnehzuil.liu@gmail.com> | 2011-12-18 22:13:58 +0100 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2011-12-18 22:13:58 +0100 |
commit | 5635a62b83c04d05e4eb4575a1c3de51a35bacdc (patch) | |
tree | 4666e038ce91682c8b32fbfa6583a6249d2b9e56 /fs/ext4 | |
parent | ext4: do not reference pa_inode from group_pa (diff) | |
download | linux-5635a62b83c04d05e4eb4575a1c3de51a35bacdc.tar.xz linux-5635a62b83c04d05e4eb4575a1c3de51a35bacdc.zip |
ext4: add missing space to ext4_msg output in ext4_fill_super()
Signed-off-by: Zheng Liu <wenqing.lz@taobao.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 3e1329e2f826..35377d57ec4c 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -3508,7 +3508,7 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent) * of the filesystem. */ if (le32_to_cpu(es->s_first_data_block) >= ext4_blocks_count(es)) { - ext4_msg(sb, KERN_WARNING, "bad geometry: first data" + ext4_msg(sb, KERN_WARNING, "bad geometry: first data " "block %u is beyond end of filesystem (%llu)", le32_to_cpu(es->s_first_data_block), ext4_blocks_count(es)); |