summaryrefslogtreecommitdiff
path: root/src/ae_epoll.c
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2013-12-05 16:35:32 +0100
committerantirez <antirez@gmail.com>2013-12-05 16:35:32 +0100
commit11e81a1e9ad1d1b4639aa8ed3fd2616ed8d1f176 (patch)
tree72de378d3a94427d675affca85fac90637e13dd5 /src/ae_epoll.c
parent74da4a574ffa39c09f1ff85fc27c0614bc23d532 (diff)
downloadredis-11e81a1e9ad1d1b4639aa8ed3fd2616ed8d1f176.tar.gz
Fixed grammar: before H the article is a, not an.
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);