diff options
author | Zheng Liu <gnehzuil.liu@gmail.com> | 2011-12-18 16:13:58 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2011-12-18 16:13:58 -0500 |
commit | 5635a62b83c04d05e4eb4575a1c3de51a35bacdc (patch) | |
tree | 4666e038ce91682c8b32fbfa6583a6249d2b9e56 /fs/ext4 | |
parent | 60e07cf515e541ea3e13b888d273c9b19a2ad9dd (diff) | |
download | op-kernel-dev-5635a62b83c04d05e4eb4575a1c3de51a35bacdc.zip op-kernel-dev-5635a62b83c04d05e4eb4575a1c3de51a35bacdc.tar.gz |
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 3e1329e..35377d5 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)); |