From: Dongwoo Lee Date: Tue, 22 Mar 2022 05:34:27 +0000 (+0900) Subject: monitor: request-handler: Fix build warning X-Git-Tag: submit/tizen/20220322.064630^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=08e24596da748b009564a4541e12e158b621a69c;p=platform%2Fcore%2Fsystem%2Fpass.git monitor: request-handler: Fix build warning Change-Id: If5b45861fe807d0c703baf8ae37dcc90ee307389 Signed-off-by: Dongwoo Lee --- diff --git a/src/monitor/request-handler.c b/src/monitor/request-handler.c index cd2904f..647a704 100644 --- a/src/monitor/request-handler.c +++ b/src/monitor/request-handler.c @@ -713,7 +713,7 @@ int create_request_client(int socket_fd) client->socket_fd = socket_fd; client->resource_table = g_hash_table_new_full(g_int_hash, g_int_equal, - NULL, delete_resource); + NULL, (GDestroyNotify)delete_resource); create_daemon_thread(&client->worker, request_handler_func, client);