From 75ab33eae118fc50f91f2fa3d835eca5eeedc900 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 1 Mar 2007 21:59:59 +0000 Subject: Should be __sigset_t instead of sigset_t. --- libc/sysdeps/linux/common/ppoll.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc') 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. */ -- cgit v1.2.3