Fix typo in ae.c file (#7895)

This commit is contained in:
Dipankar Achinta 2020-11-26 03:06:21 +05:30 committed by GitHub
parent 6e44f74dbc
commit f353853caf

View File

@ -352,7 +352,7 @@ int aeProcessEvents(aeEventLoop *eventLoop, int flags)
/* Nothing to do? return ASAP */
if (!(flags & AE_TIME_EVENTS) && !(flags & AE_FILE_EVENTS)) return 0;
/* Note that we want call select() even if there are no
/* Note that we want to call select() even if there are no
* file events to process as long as we want to process time
* events, in order to sleep until the next time event is ready
* to fire. */