1
0
Fork 0

ovl: fix warning

There's a superfluous newline in the warning message in ovl_d_real().

Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
steinar/wifi_calib_4_9_kernel
Miklos Szeredi 2016-07-29 12:05:24 +02:00
parent 5f215013a9
commit 656189d207
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ static struct dentry *ovl_d_real(struct dentry *dentry,
/* Handle recursion */
return d_real(real, inode, open_flags);
bug:
WARN(1, "ovl_d_real(%pd4, %s:%lu\n): real dentry not found\n", dentry,
WARN(1, "ovl_d_real(%pd4, %s:%lu): real dentry not found\n", dentry,
inode ? inode->i_sb->s_id : "NULL", inode ? inode->i_ino : 0);
return dentry;
}