diff options
author | Jakub Wilk <jwilk@jwilk.net> | 2016-04-27 01:11:21 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2016-04-27 01:11:21 -0400 |
commit | 8d2ae1cbe8a984d7a755755fb53955de2f60a2f9 (patch) | |
tree | c4054ce7fbd132f2d6e8af11e697ea78df1b792f /fs/ext4/inline.c | |
parent | c8585c6fcaf2011de54c3592e80a634a2b9e1a7f (diff) | |
download | linux-stable-8d2ae1cbe8a984d7a755755fb53955de2f60a2f9.tar.gz linux-stable-8d2ae1cbe8a984d7a755755fb53955de2f60a2f9.tar.bz2 linux-stable-8d2ae1cbe8a984d7a755755fb53955de2f60a2f9.zip |
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>
Diffstat (limited to 'fs/ext4/inline.c')
-rw-r--r-- | fs/ext4/inline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/inline.c b/fs/ext4/inline.c index 7bc6c855cc18..ff7538c26992 100644 --- a/fs/ext4/inline.c +++ b/fs/ext4/inline.c @@ -1780,7 +1780,7 @@ int empty_inline_dir(struct inode *dir, int *has_inline_data) ext4_warning(dir->i_sb, "bad inline directory (dir #%lu) - " "inode %u, rec_len %u, name_len %d" - "inline size %d\n", + "inline size %d", dir->i_ino, le32_to_cpu(de->inode), le16_to_cpu(de->rec_len), de->name_len, inline_size); |