diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2014-10-21 20:11:25 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-11-19 13:01:20 -0500 |
commit | a455589f181e60439c736c6c6a068bb7e6dc23f0 (patch) | |
tree | 48d377e7db8d21fd606ba8c84a72b95f3d23c10b /fs/reiserfs | |
parent | 41d28bca2da4bd75a8915c1ccf2cacf7f4a2e531 (diff) |
assorted conversions to %p[dD]
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/reiserfs')
-rw-r--r-- | fs/reiserfs/xattr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/reiserfs/xattr.c b/fs/reiserfs/xattr.c index 628248ce2f8b..04b06146bae2 100644 --- a/fs/reiserfs/xattr.c +++ b/fs/reiserfs/xattr.c | |||
@@ -210,9 +210,9 @@ fill_with_dentries(struct dir_context *ctx, const char *name, int namelen, | |||
210 | } else if (!dentry->d_inode) { | 210 | } else if (!dentry->d_inode) { |
211 | /* A directory entry exists, but no file? */ | 211 | /* A directory entry exists, but no file? */ |
212 | reiserfs_error(dentry->d_sb, "xattr-20003", | 212 | reiserfs_error(dentry->d_sb, "xattr-20003", |
213 | "Corrupted directory: xattr %s listed but " | 213 | "Corrupted directory: xattr %pd listed but " |
214 | "not found for file %s.\n", | 214 | "not found for file %pd.\n", |
215 | dentry->d_name.name, dbuf->xadir->d_name.name); | 215 | dentry, dbuf->xadir); |
216 | dput(dentry); | 216 | dput(dentry); |
217 | return -EIO; | 217 | return -EIO; |
218 | } | 218 | } |