diff options
| author | Damien George | 2017-02-16 16:12:41 +1100 |
|---|---|---|
| committer | Damien George | 2017-02-16 16:51:16 +1100 |
| commit | 58d9eeb8d940a6c42f904af70fa01e03c760d832 (patch) | |
| tree | 3db2333644a0cce42c08d30e91c1dbef910db2f5 /py/objlist.h | |
| parent | 229823942c79b1233c43dc155bae01c20a8cec57 (diff) | |
py/objlist: Convert mp_uint_t to size_t where appropriate.
Diffstat (limited to 'py/objlist.h')
| -rw-r--r-- | py/objlist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/objlist.h b/py/objlist.h index 443ede574..5b2d216fc 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; |
