diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-09-10 18:37:27 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-09-10 18:37:27 -0400 |
commit | a9555a995cea8aa67da571c95af61109140f2c8d (patch) | |
tree | f8444cff3dbd27729a623fea594c5c8222312a20 /src/linux/ppoll.c | |
parent | 1701e4f3d46b14c4c4be8a46e64f8eaf15a5c061 (diff) | |
download | musl-a9555a995cea8aa67da571c95af61109140f2c8d.tar.gz |
fix another ppoll issue (missing sigset_t size argument)
Diffstat (limited to 'src/linux/ppoll.c')
-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); } |