Fixed compilation warnings with gcc-7.2.0 59/14059/1
authorThierry Bultel <thierry.bultel@iot.bzh>
Tue, 22 May 2018 08:18:55 +0000 (10:18 +0200)
committerThierry Bultel <thierry.bultel@iot.bzh>
Tue, 22 May 2018 08:42:53 +0000 (10:42 +0200)
Replaced some 'size_t' by 'int'

Change-Id: I07492dad242b2c8f608f9cc90a4a257e48acec6a
Signed-off-by: Thierry Bultel <thierry.bultel@iot.bzh>
wrap-json.c

index 7fc8a9c..fd0ed4a 100644 (file)
@@ -528,7 +528,7 @@ static int vunpack(struct json_object *object, const char *desc, va_list args, i
        int64_t *pI = NULL;
        size_t *pz = NULL;
        uint8_t **py = NULL;
-       struct { struct json_object *parent; const char *acc; size_t index; size_t count; char type; } stack[STACKCOUNT], *top;
+       struct { struct json_object *parent; const char *acc; int index; int count; char type; } stack[STACKCOUNT], *top;
        struct json_object *obj;
        struct json_object **po;
 
@@ -863,8 +863,8 @@ static void object_for_all(struct json_object *object, void (*callback)(void*,st
 
 static void array_for_all(struct json_object *object, void (*callback)(void*,struct json_object*), void *closure)
 {
-       size_t n = json_object_array_length(object);
-       size_t i = 0;
+       int n = json_object_array_length(object);
+       int i = 0;
        while(i < n)
                callback(closure, json_object_array_get_idx(object, i++));
 }
@@ -906,8 +906,8 @@ void wrap_json_for_all(struct json_object *object, void (*callback)(void*,struct
        else if (!json_object_is_type(object, json_type_array))
                callback(closure, object, NULL);
        else {
-               size_t n = json_object_array_length(object);
-               size_t i = 0;
+               int n = json_object_array_length(object);
+               int i = 0;
                while(i < n)
                        callback(closure, json_object_array_get_idx(object, i++), NULL);
        }