summaryrefslogtreecommitdiff
path: root/src/ae.c
diff options
context:
space:
mode:
authorYossi Gottlieb <yossigo@gmail.com>2019-10-15 17:21:33 +0300
committerYossi Gottlieb <yossigo@gmail.com>2019-10-15 17:21:51 +0300
commitc469f6ad9ee46164eed3b33cf067768132ce5e8f (patch)
treeea52a13512698f01faec7b17fdcc5b6ac8867bb0 /src/ae.c
parent71f10de4dea0009efd0bc3b0127adb0f93671a70 (diff)
downloadredis-c469f6ad9ee46164eed3b33cf067768132ce5e8f.tar.gz
Code review minor changes (names, comments).
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 54c0d994e..2c1dae512 100644
--- a/src/ae.c
+++ b/src/ae.c
@@ -99,7 +99,7 @@ int aeGetSetSize(aeEventLoop *eventLoop) {
}
/* Tells the next iteration/s of the event processing to set timeout of 0. */
-void aeDontWait(aeEventLoop *eventLoop, int noWait) {
+void aeSetDontWait(aeEventLoop *eventLoop, int noWait) {
if (noWait)
eventLoop->flags |= AE_DONT_WAIT;
else