diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-04-30 23:07:23 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-04-30 23:15:32 +0200 |
commit | f6113f29c57fd0c7b4df8e1fa6e5514720056320 (patch) | |
tree | 4efdae0edc96212eaa15fb180732b8b73a04cc49 /ctl-lib/ctl-lua.c | |
parent | b9167eb1386fad27bd5bff94d26598f5fd49c38d (diff) |
Fix conversion compilation warning
Change-Id: I0d5350c1e454bc118e4470ae7ff0eafe253cd2bf
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'ctl-lib/ctl-lua.c')
-rw-r--r-- | ctl-lib/ctl-lua.c | 2 |
1 files changed, 1 insertions, 1 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); |