diff options
Diffstat (limited to 'py/objint.c')
-rw-r--r-- | py/objint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objint.c b/py/objint.c index 8e9325960f..f3d699c45e 100644 --- a/py/objint.c +++ b/py/objint.c @@ -434,5 +434,5 @@ const mp_obj_type_t mp_type_int = { .make_new = mp_obj_int_make_new, .unary_op = mp_obj_int_unary_op, .binary_op = mp_obj_int_binary_op, - .locals_dict = (mp_obj_t)&int_locals_dict, + .locals_dict = (mp_obj_dict_t*)&int_locals_dict, }; |