ext4: remove trailing \n from ext4_warning/ext4_error calls

Messages passed to ext4_warning() or ext4_error() don't need trailing
newlines, because these function add the newlines themselves.

Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
This commit is contained in:
Jakub Wilk
2016-04-27 01:11:21 -04:00
zatwierdzone przez Theodore Ts'o
rodzic c8585c6fca
commit 8d2ae1cbe8
8 zmienionych plików z 10 dodań i 10 usunięć

Wyświetl plik

@@ -4935,7 +4935,7 @@ int ext4_group_add_blocks(handle_t *handle, struct super_block *sb,
* boundary.
*/
if (bit + count > EXT4_BLOCKS_PER_GROUP(sb)) {
ext4_warning(sb, "too much blocks added to group %u\n",
ext4_warning(sb, "too much blocks added to group %u",
block_group);
err = -EINVAL;
goto error_return;