diff options
Diffstat (limited to 'py/objobject.c')
-rw-r--r-- | py/objobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objobject.c b/py/objobject.c index 868a85b32a..ffad610707 100644 --- a/py/objobject.c +++ b/py/objobject.c @@ -112,7 +112,7 @@ STATIC MP_DEFINE_CONST_DICT(object_locals_dict, object_locals_dict_table); #endif #if MICROPY_CPYTHON_COMPAT -#define OBJECT_TYPE_LOCALS_DICT , locals_dict, (mp_obj_dict_t *)&object_locals_dict +#define OBJECT_TYPE_LOCALS_DICT , locals_dict, &object_locals_dict #else #define OBJECT_TYPE_LOCALS_DICT #endif |