From 88ee798f4eafea0c4bf18bd63c2394b6528ea014 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 13 Jun 2023 04:05:32 +0200 Subject: minor refactoring --- src/worker.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/worker.c') diff --git a/src/worker.c b/src/worker.c index 03a83c6..8536013 100644 --- a/src/worker.c +++ b/src/worker.c @@ -80,7 +80,8 @@ static int worker_set_stopping(UNUSED struct event_loop *loop, UNUSED int fd, UN return 0; } -static int worker_handle_run(const struct msg *request, UNUSED struct msg **response, void *_ctx) +static int worker_handle_cmd_run(const struct msg *request, UNUSED struct msg **response, + void *_ctx) { struct cmd_conn_ctx *ctx = (struct cmd_conn_ctx *)_ctx; struct run *run = NULL; @@ -117,7 +118,7 @@ free_output: } static struct cmd_desc commands[] = { - {CMD_RUN, worker_handle_run}, + {CMD_RUN, worker_handle_cmd_run}, }; static const size_t numof_commands = sizeof(commands) / sizeof(commands[0]); -- cgit v1.2.3