From: jingjin.geng Date: Tue, 18 Sep 2018 18:48:11 +0000 (+0800) Subject: Fix build warnning X-Git-Tag: accepted/tizen/unified/20180919.061644~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F50%2F189450%2F1;p=platform%2Fcore%2Fuifw%2Fnlp.git Fix build warnning Change-Id: I30eac8bf3f8e4b79593d4c00aaadde4b8de0203a --- diff --git a/service/src/service.c b/service/src/service.c index b9145b3..752f674 100755 --- a/service/src/service.c +++ b/service/src/service.c @@ -413,8 +413,8 @@ static int __message_send(rpc_port_stub_message_context_h context, } bundle_add_str(reply, "command", "lemmatize"); - bundle_add_str_array(reply, "return_tag", lem_buf, len); - bundle_add_str_array(reply, "return_token", tag, len); + bundle_add_str_array(reply, "return_tag", (const char **)lem_buf, len); + bundle_add_str_array(reply, "return_token", (const char **)tag, len); for(int j = 0 ;j < len ;j++) { free(tag[j]);