summaryrefslogtreecommitdiffstatshomepage
path: root/py/objint.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/objint.c')
-rw-r--r--py/objint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objint.c b/py/objint.c
index 8e048ddec3..7f0e2b2506 100644
--- a/py/objint.c
+++ b/py/objint.c
@@ -270,7 +270,7 @@ mp_obj_t mp_obj_new_int(mp_int_t value) {
return mp_const_none;
}
-mp_int_t mp_obj_int_get(mp_const_obj_t self_in) {
+mp_int_t mp_obj_int_get_truncated(mp_const_obj_t self_in) {
return MP_OBJ_SMALL_INT_VALUE(self_in);
}