diff options
author | Khem Raj <kraj@mvista.com> | 2007-03-01 21:59:59 +0000 |
---|---|---|
committer | Khem Raj <kraj@mvista.com> | 2007-03-01 21:59:59 +0000 |
commit | 75ab33eae118fc50f91f2fa3d835eca5eeedc900 (patch) | |
tree | 06b1aadb0dfed697af4978a71563ed1bd33916c6 /libc/sysdeps | |
parent | 148c1f77492a22ddfc87375c3b2464d5521a3843 (diff) |
Should be __sigset_t instead of sigset_t.
Diffstat (limited to 'libc/sysdeps')
-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. */ |