diff options
Diffstat (limited to 'py/objstr.h')
-rw-r--r-- | py/objstr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/objstr.h b/py/objstr.h index d9327b1ab8..1cfb195038 100644 --- a/py/objstr.h +++ b/py/objstr.h @@ -62,8 +62,8 @@ const byte *mp_obj_str_get_data_no_check(mp_obj_t self_in, size_t *len); mp_obj_t mp_obj_str_make_new(mp_obj_t type_in, size_t n_args, size_t n_kw, const mp_obj_t *args); void mp_str_print_json(const mp_print_t *print, const byte *str_data, size_t str_len); -mp_obj_t mp_obj_str_format(mp_uint_t n_args, const mp_obj_t *args, mp_map_t *kwargs); -mp_obj_t mp_obj_str_split(mp_uint_t n_args, const mp_obj_t *args); +mp_obj_t mp_obj_str_format(size_t n_args, const mp_obj_t *args, mp_map_t *kwargs); +mp_obj_t mp_obj_str_split(size_t n_args, const mp_obj_t *args); mp_obj_t mp_obj_new_str_of_type(const mp_obj_type_t *type, const byte* data, size_t len); mp_obj_t mp_obj_str_binary_op(mp_uint_t op, mp_obj_t lhs_in, mp_obj_t rhs_in); |