Skip to content
Snippets Groups Projects
Commit 7ba0fedf authored by Sven Wegener's avatar Sven Wegener
Browse files

py: Fix mp_obj_t -> mp_const_obj_t for mp_obj_int_get_checked()

parent bf271401
No related branches found
No related tags found
No related merge requests found
......@@ -258,7 +258,7 @@ machine_int_t mp_obj_int_get(mp_obj_t self_in) {
return MP_OBJ_SMALL_INT_VALUE(self_in);
}
machine_int_t mp_obj_int_get_checked(mp_obj_t self_in) {
machine_int_t mp_obj_int_get_checked(mp_const_obj_t self_in) {
return MP_OBJ_SMALL_INT_VALUE(self_in);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment