1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

style: rename parameter to match definition

Rename the `handle` parameter of `timer_close_cb`'s declaration
to `timer` to match the definition.
This commit is contained in:
Mohammed Keyvanzadeh 2025-03-11 01:47:12 +03:30 committed by Saúl Ibarra Corretgé
parent 4681d5d570
commit ea1cf034be

View File

@ -51,7 +51,7 @@ struct poll_ctx {
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);
static void timer_close_cb(uv_handle_t* handle);
static void timer_close_cb(uv_handle_t* timer);
static uv_stat_t zero_statbuf;