aboutsummaryrefslogtreecommitdiff
path: root/py/objfun.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2019-03-09 10:22:09 +1100
committerDamien George <damien.p.george@gmail.com>2019-03-14 12:22:25 +1100
commit0e4c24ec08c19773b26a662abb133c05b474b1fa (patch)
tree0501b0019a08e664f070a10efe5ddc70c7c4f403 /py/objfun.c
parent3b973a5658025bb99f503fb15ba11884729ac77a (diff)
py/nativeglue: Rename native convert funs to match other native helpers.
Diffstat (limited to 'py/objfun.c')
-rw-r--r--py/objfun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objfun.c b/py/objfun.c
index 159d67e5e..d50b7fa25 100644
--- a/py/objfun.c
+++ b/py/objfun.c
@@ -510,7 +510,7 @@ STATIC mp_obj_t fun_asm_call(mp_obj_t self_in, size_t n_args, size_t n_kw, const
);
}
- return mp_convert_native_to_obj(ret, self->type_sig);
+ return mp_native_to_obj(ret, self->type_sig);
}
STATIC const mp_obj_type_t mp_type_fun_asm = {