From 9885bb933c183dbde49a55944c74da286560caea Mon Sep 17 00:00:00 2001 From: Boyeon Date: Wed, 15 May 2019 15:25:05 +0900 Subject: [PATCH] Change the pointer type to comply with g_strjoinv() function --- src/devicemanagerservice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devicemanagerservice.c b/src/devicemanagerservice.c index eedcfa3..60f00d8 100644 --- a/src/devicemanagerservice.c +++ b/src/devicemanagerservice.c @@ -39,7 +39,7 @@ static char *__make_taskinfo_request(int duration, int period) return request_json; } -static char *__make_log_archive_request(const char *log_path_arr[], const char *archive_file) +static char *__make_log_archive_request(char *log_path_arr[], const char *archive_file) { char *request_json = NULL; char *log_path_str = NULL; -- 2.7.4