diff options
Diffstat (limited to 'py/objdict.c')
-rw-r--r-- | py/objdict.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/py/objdict.c b/py/objdict.c index da1b5b9f5b..0d4a60a9ea 100644 --- a/py/objdict.c +++ b/py/objdict.c @@ -38,8 +38,7 @@ static void dict_print(void (*print)(void *env, const char *fmt, ...), void *env print(env, "}"); } -// args are reverse in the array -static mp_obj_t dict_make_new(mp_obj_t type_in, int n_args, const mp_obj_t *args) { +static mp_obj_t dict_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_obj_t *args) { // TODO create from an iterable! return rt_build_map(0); } |