Unverified Commit b8665b87 authored by ls-2018's avatar ls-2018 Committed by GitHub
Browse files

fix unused argument warning in ae_select.c (#10824)

parent 1067cfb3
...@@ -50,6 +50,7 @@ static int aeApiCreate(aeEventLoop *eventLoop) { ...@@ -50,6 +50,7 @@ static int aeApiCreate(aeEventLoop *eventLoop) {
} }
static int aeApiResize(aeEventLoop *eventLoop, int setsize) { static int aeApiResize(aeEventLoop *eventLoop, int setsize) {
AE_NOTUSED(eventLoop);
/* Just ensure we have enough room in the fd_set type. */ /* Just ensure we have enough room in the fd_set type. */
if (setsize >= FD_SETSIZE) return -1; if (setsize >= FD_SETSIZE) return -1;
return 0; return 0;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment