ae_epoll.c typo introduced in the previous commit fixed.

This commit is contained in:
antirez 2011-12-15 11:50:15 +01:00
parent 1beff5317a
commit ab6c78e66a

View File

@ -13,7 +13,7 @@ static int aeApiCreate(aeEventLoop *eventLoop) {
aeApiState *state = zmalloc(sizeof(aeApiState)); aeApiState *state = zmalloc(sizeof(aeApiState));
if (!state) return -1; if (!state) return -1;
state->events = zmalloc(sizeof(epoll_event)*eventLoop->setsize); state->events = zmalloc(sizeof(struct epoll_event)*eventLoop->setsize);
if (!state->events) { if (!state->events) {
zfree(state); zfree(state);
return -1; return -1;