py/objlist: Convert mp_uint_t to size_t where appropriate.

This commit is contained in:
Damien George
2017-02-16 16:12:41 +11:00
parent 229823942c
commit 58d9eeb8d9
3 changed files with 16 additions and 16 deletions

View File

@@ -30,8 +30,8 @@
typedef struct _mp_obj_list_t {
mp_obj_base_t base;
mp_uint_t alloc;
mp_uint_t len;
size_t alloc;
size_t len;
mp_obj_t *items;
} mp_obj_list_t;