py/persistentcode: Change "len" type to size_t for mp_obj_str_get_data.

This commit is contained in:
Henrik Vendelbo 2019-05-12 11:22:48 +02:00 committed by Damien George
parent f812394c33
commit ab93321e31
1 changed files with 1 additions and 1 deletions

View File

@ -560,7 +560,7 @@ STATIC void save_obj(mp_print_t *print, mp_obj_t o) {
} else {
obj_type = 'b';
}
mp_uint_t len;
size_t len;
const char *str = mp_obj_str_get_data(o, &len);
mp_print_bytes(print, &obj_type, 1);
mp_print_uint(print, len);