summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-09-10 18:37:27 -0400
committerRich Felker <dalias@aerifal.cx>2012-09-10 18:37:27 -0400
commita9555a995cea8aa67da571c95af61109140f2c8d (patch)
treef8444cff3dbd27729a623fea594c5c8222312a20 /src
parent1701e4f3d46b14c4c4be8a46e64f8eaf15a5c061 (diff)
downloadmusl-a9555a995cea8aa67da571c95af61109140f2c8d.tar.gz
fix another ppoll issue (missing sigset_t size argument)
Diffstat (limited to 'src')
-rw-r--r--src/linux/ppoll.c2
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);
}