Commit 31c85233 authored by David Mosberger's avatar David Mosberger Committed by Tony Luck

[IA64] sys_ia32.c: add missing __user annotation for sparse

Signed-off-by: default avatarDavid Mosberger-Tang <davidm@hpl.hp.com>
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent 61ec29fa
......@@ -2656,7 +2656,7 @@ asmlinkage long sys32_waitid(int which, compat_pid_t pid,
info.si_signo = 0;
set_fs (KERNEL_DS);
ret = sys_waitid(which, pid, (siginfo_t __user *) &info, options,
uru ? &ru : NULL);
uru ? (struct rusage __user *) &ru : NULL);
set_fs (old_fs);
if (ret < 0 || info.si_signo == 0)
......
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