From a9555a995cea8aa67da571c95af61109140f2c8d Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 10 Sep 2012 18:37:27 -0400 Subject: fix another ppoll issue (missing sigset_t size argument) --- src/linux/ppoll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/linux') 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); } -- cgit v1.2.1