diff options
author | Theodore Ts'o <tytso@mit.edu> | 2006-06-25 05:47:52 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-25 10:01:07 -0700 |
commit | d2e5b13c4a7c68fdbcf389c9fffc12cfa2c185af (patch) | |
tree | 8e82fbc922646a754918de5381e5e0d4efcc896e /fs/ext3 | |
parent | e8f1c6227a0bc9b1e3a7e87cd31f650a909f647f (diff) |
[PATCH] ext3: remove inconsistent space before exclamation point in mount code
This was reported as Debian bug #336604.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/ext3')
-rw-r--r-- | fs/ext3/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext3/super.c b/fs/ext3/super.c index df98a770925..e0fc0c83be9 100644 --- a/fs/ext3/super.c +++ b/fs/ext3/super.c @@ -1603,7 +1603,7 @@ static int ext3_fill_super (struct super_block *sb, void *data, int silent) } } if (!ext3_check_descriptors (sb)) { - printk (KERN_ERR "EXT3-fs: group descriptors corrupted !\n"); + printk(KERN_ERR "EXT3-fs: group descriptors corrupted!\n"); goto failed_mount2; } sbi->s_gdb_count = db_count; |