diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-04-30 23:07:23 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-12-13 15:02:54 +0100 |
commit | e8b0b19bba131922ebd1beb4ec0dd5e1c27863ae (patch) | |
tree | 4efdae0edc96212eaa15fb180732b8b73a04cc49 | |
parent | e48aaca4ff9c304dff7d51aa8fcf8ca026a2cf26 (diff) |
Fix conversion compilation warning
Change-Id: I0d5350c1e454bc118e4470ae7ff0eafe253cd2bf
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r-- | ctl-lib/ctl-lua.c | 2 | ||||
-rw-r--r-- | ctl-lib/ctl-plugin.c | 4 |
2 files changed, 3 insertions, 3 deletions
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); |