diff options
Diffstat (limited to 'src/linux/epoll_ctl.c')
-rw-r--r-- | src/linux/epoll_ctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linux/epoll_ctl.c b/src/linux/epoll_ctl.c index 4214f407..da3e999b 100644 --- a/src/linux/epoll_ctl.c +++ b/src/linux/epoll_ctl.c @@ -3,5 +3,5 @@ int epoll_ctl(int fd, int op, int fd2, struct epoll_event *ev) { - return syscall4(__NR_epoll_ctl, fd, op, fd2, (long)ev); + return syscall(SYS_epoll_ctl, fd, op, fd2, ev); } |