diff options
Diffstat (limited to 'src/nxt_mem_pool_cleanup.c')
-rw-r--r-- | src/nxt_mem_pool_cleanup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nxt_mem_pool_cleanup.c b/src/nxt_mem_pool_cleanup.c index febfc959..ceafc9c8 100644 --- a/src/nxt_mem_pool_cleanup.c +++ b/src/nxt_mem_pool_cleanup.c @@ -7,7 +7,7 @@ #include <nxt_main.h> -static void nxt_mem_pool_file_cleanup_handler(void *data); +static void nxt_mem_pool_file_cleanup_handler(nxt_task_t *task, void *data); nxt_mem_pool_cleanup_t * @@ -27,13 +27,13 @@ nxt_mem_pool_file_cleanup(nxt_mem_pool_t *mp, nxt_file_t *file) static void -nxt_mem_pool_file_cleanup_handler(void *data) +nxt_mem_pool_file_cleanup_handler(nxt_task_t *task, void *data) { nxt_file_t *file; file = data; if (file->fd != NXT_FILE_INVALID) { - nxt_file_close(file); + nxt_file_close(task, file); } } |