From ea1cf034bef1ee39cf453b5b37b98be153541453 Mon Sep 17 00:00:00 2001 From: Mohammed Keyvanzadeh Date: Tue, 11 Mar 2025 01:47:12 +0330 Subject: [PATCH] style: rename parameter to match definition Rename the `handle` parameter of `timer_close_cb`'s declaration to `timer` to match the definition. --- src/fs-poll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fs-poll.c b/src/fs-poll.c index 44f6263a..1fadafde 100644 --- a/src/fs-poll.c +++ b/src/fs-poll.c @@ -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;