diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2022-06-24 16:27:46 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2022-09-19 19:06:01 +1000 |
commit | 9dce82776db104750283b213095a7aedfb95a1d9 (patch) | |
tree | ede3b1e720059111af4d97916bbce57fcded8c1c /extmod/modframebuf.c | |
parent | b7d6ee9b75650bd0ac36e89077d5d08a3eed9e3f (diff) | |
download | micropython-9dce82776db104750283b213095a7aedfb95a1d9.tar.gz micropython-9dce82776db104750283b213095a7aedfb95a1d9.zip |
all: Remove unnecessary locals_dict cast.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'extmod/modframebuf.c')
-rw-r--r-- | extmod/modframebuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/modframebuf.c b/extmod/modframebuf.c index 1d44312cf3..f29eab272f 100644 --- a/extmod/modframebuf.c +++ b/extmod/modframebuf.c @@ -835,7 +835,7 @@ STATIC MP_DEFINE_CONST_OBJ_TYPE( MP_TYPE_FLAG_NONE, framebuf_make_new, buffer, framebuf_get_buffer, - locals_dict, (mp_obj_dict_t *)&framebuf_locals_dict + locals_dict, &framebuf_locals_dict ); #endif |