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 /arch/x86/ia32 | |
parent | 41d28bca2da4bd75a8915c1ccf2cacf7f4a2e531 (diff) |
assorted conversions to %p[dD]
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/x86/ia32')
-rw-r--r-- | arch/x86/ia32/ia32_aout.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/ia32/ia32_aout.c b/arch/x86/ia32/ia32_aout.c index df91466f973d..ae6aad1d24f7 100644 --- a/arch/x86/ia32/ia32_aout.c +++ b/arch/x86/ia32/ia32_aout.c | |||
@@ -342,8 +342,8 @@ static int load_aout_binary(struct linux_binprm *bprm) | |||
342 | time_after(jiffies, error_time + 5*HZ)) { | 342 | time_after(jiffies, error_time + 5*HZ)) { |
343 | printk(KERN_WARNING | 343 | printk(KERN_WARNING |
344 | "fd_offset is not page aligned. Please convert " | 344 | "fd_offset is not page aligned. Please convert " |
345 | "program: %s\n", | 345 | "program: %pD\n", |
346 | bprm->file->f_path.dentry->d_name.name); | 346 | bprm->file); |
347 | error_time = jiffies; | 347 | error_time = jiffies; |
348 | } | 348 | } |
349 | #endif | 349 | #endif |
@@ -429,8 +429,8 @@ static int load_aout_library(struct file *file) | |||
429 | if (time_after(jiffies, error_time + 5*HZ)) { | 429 | if (time_after(jiffies, error_time + 5*HZ)) { |
430 | printk(KERN_WARNING | 430 | printk(KERN_WARNING |
431 | "N_TXTOFF is not page aligned. Please convert " | 431 | "N_TXTOFF is not page aligned. Please convert " |
432 | "library: %s\n", | 432 | "library: %pD\n", |
433 | file->f_path.dentry->d_name.name); | 433 | file); |
434 | error_time = jiffies; | 434 | error_time = jiffies; |
435 | } | 435 | } |
436 | #endif | 436 | #endif |