From c469f6ad9ee46164eed3b33cf067768132ce5e8f Mon Sep 17 00:00:00 2001 From: Yossi Gottlieb Date: Tue, 15 Oct 2019 17:21:33 +0300 Subject: Code review minor changes (names, comments). --- src/ae.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ae.c') 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 -- cgit v1.2.1