projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1701e4f
)
fix another ppoll issue (missing sigset_t size argument)
author
Rich Felker
<dalias@aerifal.cx>
Mon, 10 Sep 2012 22:37:27 +0000
(18:37 -0400)
committer
Rich Felker
<dalias@aerifal.cx>
Mon, 10 Sep 2012 22:37:27 +0000
(18:37 -0400)
src/linux/ppoll.c
patch
|
blob
|
history
diff --git
a/src/linux/ppoll.c
b/src/linux/ppoll.c
index d49e836e4e84fcb3a2220fc62245e1a310c52c67..f0268894c038681a57dc49f9f0ba946ffdb63256 100644
(file)
--- 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
);
}