commit | 58d9eeb8d940a6c42f904af70fa01e03c760d832 | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Thu Feb 16 16:12:41 2017 +1100 |
committer | Damien George <damien.p.george@gmail.com> | Thu Feb 16 16:51:16 2017 +1100 |
tree | 3db2333644a0cce42c08d30e91c1dbef910db2f5 | |
parent | 229823942c79b1233c43dc155bae01c20a8cec57 [diff] [blame] |
py/objlist: Convert mp_uint_t to size_t where appropriate.
diff --git a/py/objlist.h b/py/objlist.h index 443ede5..5b2d216 100644 --- a/py/objlist.h +++ b/py/objlist.h
@@ -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;