summaryrefslogtreecommitdiff
path: root/src/ae_epoll.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ae_epoll.c')
-rw-r--r--src/ae_epoll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ae_epoll.c b/src/ae_epoll.c
index 41af3e874..da9c7b906 100644
--- a/src/ae_epoll.c
+++ b/src/ae_epoll.c
@@ -45,7 +45,7 @@ static int aeApiCreate(aeEventLoop *eventLoop) {
zfree(state);
return -1;
}
- state->epfd = epoll_create(1024); /* 1024 is just an hint for the kernel */
+ state->epfd = epoll_create(1024); /* 1024 is just a hint for the kernel */
if (state->epfd == -1) {
zfree(state->events);
zfree(state);