fix unused argument warning in ae_select.c (#10824)
This commit is contained in:
parent
1067cfb34b
commit
b8665b879b
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user