py/objstr: Convert mp_uint_t to size_t (and use int) where appropriate.

This commit is contained in:
Damien George
2017-02-16 16:26:48 +11:00
parent 68cd3a93f0
commit c0d9500eee
4 changed files with 33 additions and 33 deletions

View File

@@ -284,7 +284,7 @@ typedef struct _mp_obj_str_it_t {
mp_obj_base_t base;
mp_fun_1_t iternext;
mp_obj_t str;
mp_uint_t cur;
size_t cur;
} mp_obj_str_it_t;
STATIC mp_obj_t str_it_iternext(mp_obj_t self_in) {