From: antirez Date: Thu, 15 Dec 2011 10:50:15 +0000 (+0100) Subject: ae_epoll.c typo introduced in the previous commit fixed. X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/36dda9554a826104653765ec8782e055384c39f1 ae_epoll.c typo introduced in the previous commit fixed. --- diff --git a/src/ae_epoll.c b/src/ae_epoll.c index fc6d9ccd..cac10d67 100644 --- a/src/ae_epoll.c +++ b/src/ae_epoll.c @@ -13,7 +13,7 @@ static int aeApiCreate(aeEventLoop *eventLoop) { aeApiState *state = zmalloc(sizeof(aeApiState)); if (!state) return -1; - state->events = zmalloc(sizeof(epoll_event)*eventLoop->setsize); + state->events = zmalloc(sizeof(struct epoll_event)*eventLoop->setsize); if (!state->events) { zfree(state); return -1;