summaryrefslogtreecommitdiff
path: root/src/ae.c
diff options
context:
space:
mode:
authorDipankar Achinta <di.punk.car19@gmail.com>2020-11-26 03:06:21 +0530
committerGitHub <noreply@github.com>2020-11-25 13:36:21 -0800
commit79a7c17176f109b81af171ce564b0354febbfd3f (patch)
tree776010f00d6f83fe7f4ad286b922da1c4ba90a63 /src/ae.c
parent0719388cfb1a79160204314beb1de1f9c29a3684 (diff)
downloadredis-79a7c17176f109b81af171ce564b0354febbfd3f.tar.gz
Fix typo in ae.c file (#7895)
Diffstat (limited to 'src/ae.c')
-rw-r--r--src/ae.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ae.c b/src/ae.c
index e6f8df877..1c3a4e091 100644
--- a/src/ae.c
+++ b/src/ae.c
@@ -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. */