diff options
author | Johann Lombardi <johann.lombardi@bull.net> | 2005-11-13 16:07:36 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-13 18:14:17 -0800 |
commit | ec63f22dc31de19b273b7aca66e73ae85cc2418e (patch) | |
tree | 5a699bebc15b1feab998cec131ec419ccb8db072 /fs/ext2 | |
parent | 5ef1c49f8f9f0d6b5b8d57bb4b66c605a3d65876 (diff) | |
download | op-kernel-dev-ec63f22dc31de19b273b7aca66e73ae85cc2418e.zip op-kernel-dev-ec63f22dc31de19b273b7aca66e73ae85cc2418e.tar.gz |
[PATCH] ext2: remove duplicate newlines in ext2_fill_super
ext2_warning() already adds a newline.
Signed-off-by: Johann Lombardi <johann.lombardi@bull.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/ext2')
-rw-r--r-- | fs/ext2/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext2/super.c b/fs/ext2/super.c index e4ed4b3..522fa70 100644 --- a/fs/ext2/super.c +++ b/fs/ext2/super.c @@ -881,7 +881,7 @@ static int ext2_fill_super(struct super_block *sb, void *data, int silent) } if (EXT2_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_HAS_JOURNAL)) ext2_warning(sb, __FUNCTION__, - "mounting ext3 filesystem as ext2\n"); + "mounting ext3 filesystem as ext2"); ext2_setup_super (sb, es, sb->s_flags & MS_RDONLY); percpu_counter_mod(&sbi->s_freeblocks_counter, ext2_count_free_blocks(sb)); |