osx: fix compilation warning
Remove leftover status argument uv_async_t callbacks
This commit is contained in:
parent
7c5ab1a73e
commit
0ee3ce98e4
@ -177,7 +177,7 @@ static void (*pFSEventStreamStop)(FSEventStreamRef);
|
||||
|
||||
|
||||
/* Runs in UV loop's thread, when there're events to report to handle */
|
||||
static void uv__fsevents_cb(uv_async_t* cb, int status) {
|
||||
static void uv__fsevents_cb(uv_async_t* cb) {
|
||||
uv_fs_event_t* handle;
|
||||
|
||||
handle = cb->data;
|
||||
|
||||
@ -224,7 +224,7 @@ static void uv__stream_osx_select(void* arg) {
|
||||
}
|
||||
|
||||
|
||||
static void uv__stream_osx_select_cb(uv_async_t* handle, int status) {
|
||||
static void uv__stream_osx_select_cb(uv_async_t* handle) {
|
||||
uv__stream_select_t* s;
|
||||
uv_stream_t* stream;
|
||||
int events;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user