[PATCH] compat_sys_pselect7() fix
fs/compat.c: In function `compat_sys_pselect7': fs/compat.c:1820: warning: passing arg 5 of `compat_core_sys_select' from incompatible pointer type Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
4ff0c007b2
commit
cb82a6cdf9
|
@ -1781,7 +1781,7 @@ asmlinkage long compat_sys_pselect7(int n, compat_ulong_t __user *inp,
|
||||||
{
|
{
|
||||||
compat_sigset_t ss32;
|
compat_sigset_t ss32;
|
||||||
sigset_t ksigmask, sigsaved;
|
sigset_t ksigmask, sigsaved;
|
||||||
long timeout = MAX_SCHEDULE_TIMEOUT;
|
s64 timeout = MAX_SCHEDULE_TIMEOUT;
|
||||||
struct compat_timespec ts;
|
struct compat_timespec ts;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue