diff options
Diffstat (limited to 'py/objdict.c')
-rw-r--r-- | py/objdict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objdict.c b/py/objdict.c index f3217507a9..4010d9ce3f 100644 --- a/py/objdict.c +++ b/py/objdict.c @@ -82,7 +82,7 @@ STATIC void dict_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_ } } -STATIC mp_obj_t dict_make_new(mp_obj_t type_in, mp_uint_t n_args, mp_uint_t n_kw, const mp_obj_t *args) { +STATIC mp_obj_t dict_make_new(mp_obj_t type_in, size_t n_args, size_t n_kw, const mp_obj_t *args) { mp_obj_t dict_out = mp_obj_new_dict(0); mp_obj_dict_t *dict = MP_OBJ_TO_PTR(dict_out); dict->base.type = MP_OBJ_TO_PTR(type_in); |