Commit 656189d2 authored by Miklos Szeredi's avatar Miklos Szeredi

ovl: fix warning

There's a superfluous newline in the warning message in ovl_d_real().
Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
parent 5f215013
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment