From f6113f29c57fd0c7b4df8e1fa6e5514720056320 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Mon, 30 Apr 2018 23:07:23 +0200 Subject: Fix conversion compilation warning Change-Id: I0d5350c1e454bc118e4470ae7ff0eafe253cd2bf Signed-off-by: Romain Forlot --- ctl-lib/ctl-lua.c | 2 +- ctl-lib/ctl-plugin.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'ctl-lib') diff --git a/ctl-lib/ctl-lua.c b/ctl-lib/ctl-lua.c index 3f3fe81..757956e 100644 --- a/ctl-lib/ctl-lua.c +++ b/ctl-lib/ctl-lua.c @@ -111,7 +111,7 @@ STATIC int LuaPushArgument (CtlSourceT *source, json_object *argsJ) { break; } case json_type_array: { - int length= json_object_array_length(argsJ); + size_t length= json_object_array_length(argsJ); lua_newtable (luaState); for (int idx=0; idx < length; idx ++) { json_object *val=json_object_array_get_idx(argsJ, idx); diff --git a/ctl-lib/ctl-plugin.c b/ctl-lib/ctl-plugin.c index 705a2b4..2520d77 100644 --- a/ctl-lib/ctl-plugin.c +++ b/ctl-lib/ctl-plugin.c @@ -203,7 +203,7 @@ STATIC int PluginLoadOne (AFB_ApiT apiHandle, CtlPluginT *ctlPlugin, json_object // look on l2c command and push them to LUA if (json_object_get_type(lua2csJ) == json_type_array) { - int length = json_object_array_length(lua2csJ); + size_t length = json_object_array_length(lua2csJ); l2cFunc = calloc(length + ctlLua2cFunc->l2cCount + 1, sizeof (luaL_Reg)); for (count = 0; count < length; count++) { int err; @@ -267,7 +267,7 @@ PUBLIC int PluginConfig(AFB_ApiT apiHandle, CtlSectionT *section, json_object *p else { if (json_object_get_type(pluginsJ) == json_type_array) { - int length = json_object_array_length(pluginsJ); + size_t length = json_object_array_length(pluginsJ); ctlPlugins = calloc (length+1, sizeof(CtlPluginT)); for (int idx=0; idx < length; idx++) { json_object *pluginJ = json_object_array_get_idx(pluginsJ, idx); -- cgit 1.2.3-korg