diff options
-rw-r--r-- | src/linux/ppoll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linux/ppoll.c b/src/linux/ppoll.c index d49e836e..f0268894 100644 --- a/src/linux/ppoll.c +++ b/src/linux/ppoll.c @@ -5,5 +5,5 @@ int ppoll(struct pollfd *fds, nfds_t n, const struct timespec *to, const sigset_t *mask) { return syscall_cp(SYS_ppoll, fds, n, - to ? (struct timespec []){*to} : 0, mask); + to ? (struct timespec []){*to} : 0, mask, __SYSCALL_SSLEN); } |