diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2017-12-27 09:51:37 -0500 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2018-01-02 08:42:01 -0500 |
commit | f463589a7cd2d156e3b6b64ee26588c0cdcce08a (patch) | |
tree | 1d3e1226de65e14748fcc607f42009e12d05f1c4 /fs/ext2/super.c | |
parent | d5bd821350e69f5f464c175455135727f986f793 (diff) |
ext2: drop unneeded newline
ext2_msg prints a newline at the end of the message string, so the message
string does not need to include a newline explicitly. Done using
Coccinelle.
Reviewed-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/ext2/super.c')
-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 7646818ab266..15f90f5f3e13 100644 --- a/fs/ext2/super.c +++ b/fs/ext2/super.c | |||
@@ -1225,7 +1225,7 @@ static void ext2_clear_super_error(struct super_block *sb) | |||
1225 | * write and hope for the best. | 1225 | * write and hope for the best. |
1226 | */ | 1226 | */ |
1227 | ext2_msg(sb, KERN_ERR, | 1227 | ext2_msg(sb, KERN_ERR, |
1228 | "previous I/O error to superblock detected\n"); | 1228 | "previous I/O error to superblock detected"); |
1229 | clear_buffer_write_io_error(sbh); | 1229 | clear_buffer_write_io_error(sbh); |
1230 | set_buffer_uptodate(sbh); | 1230 | set_buffer_uptodate(sbh); |
1231 | } | 1231 | } |