diff options
author | Yongqiang Yang <xiaoqiangnk@gmail.com> | 2011-07-27 05:53:35 +0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2011-07-27 05:53:35 +0400 |
commit | 2b79b09d13e35577151bd13ba08809911baccd1c (patch) | |
tree | 52ccf2c03372dcb962d20a297deb3e06498cd75f /fs/ext4 | |
parent | 4740b830ed5720ade6c780dbf3fdfe9089b3552d (diff) | |
download | linux-2b79b09d13e35577151bd13ba08809911baccd1c.tar.xz |
ext4: fix a typo in ext4_group_extend()
Signed-off-by: Yongqiang Yang <xiaoqiangnk@gmail.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/resize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c index 4c041e37f61f..5f0aefdc8599 100644 --- a/fs/ext4/resize.c +++ b/fs/ext4/resize.c @@ -986,7 +986,7 @@ int ext4_group_extend(struct super_block *sb, struct ext4_super_block *es, o_blocks_count = ext4_blocks_count(es); if (test_opt(sb, DEBUG)) - printk(KERN_DEBUG "EXT4-fs: extending last group from %llu uto %llu blocks\n", + printk(KERN_DEBUG "EXT4-fs: extending last group from %llu to %llu blocks\n", o_blocks_count, n_blocks_count); if (n_blocks_count == 0 || n_blocks_count == o_blocks_count) |