diff options
Diffstat (limited to 'libc/sysdeps/linux/common/ppoll.c')
-rw-r--r-- | libc/sysdeps/linux/common/ppoll.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/ppoll.c b/libc/sysdeps/linux/common/ppoll.c index e908ea8a4..3c4d3410b 100644 --- a/libc/sysdeps/linux/common/ppoll.c +++ b/libc/sysdeps/linux/common/ppoll.c @@ -26,11 +26,11 @@ static inline _syscall4(int, __libc_ppoll, struct pollfd *, fds, nfds_t, nfds, const struct timespec *, timeout, - const sigset_t *, sigmask); + const __sigset_t *, sigmask); int ppoll (struct pollfd *fds, nfds_t nfds, const struct timespec *timeout, - const sigset_t *sigmask) + const __sigset_t *sigmask) { /* The Linux kernel can in some situations update the timeout value. We do not want that so use a local variable. */ |