ext/libuv/src/fs-poll.c in libuv-0.12.2 vs ext/libuv/src/fs-poll.c in libuv-0.12.3

- old
+ new

@@ -39,11 +39,11 @@ char path[1]; /* variable length */ }; static int statbuf_eq(const uv_stat_t* a, const uv_stat_t* b); static void poll_cb(uv_fs_t* req); -static void timer_cb(uv_timer_t* timer, int status); +static void timer_cb(uv_timer_t* timer); static void timer_close_cb(uv_handle_t* handle); static uv_stat_t zero_statbuf; @@ -146,10 +146,10 @@ void uv__fs_poll_close(uv_fs_poll_t* handle) { uv_fs_poll_stop(handle); } -static void timer_cb(uv_timer_t* timer, int status) { +static void timer_cb(uv_timer_t* timer) { struct poll_ctx* ctx; ctx = container_of(timer, struct poll_ctx, timer_handle); assert(ctx->parent_handle != NULL); assert(ctx->parent_handle->poll_ctx == ctx);