osx: fix compilation warning

Remove leftover status argument uv_async_t callbacks
This commit is contained in:
Saúl Ibarra Corretgé 2014-03-19 09:28:44 +01:00
parent 7c5ab1a73e
commit 0ee3ce98e4
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;