summaryrefslogtreecommitdiff
path: root/extmod/modbluetooth.c
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2022-06-24 16:27:46 +1000
committerDamien George <damien@micropython.org>2022-09-19 19:06:01 +1000
commit9dce82776db104750283b213095a7aedfb95a1d9 (patch)
treeede3b1e720059111af4d97916bbce57fcded8c1c /extmod/modbluetooth.c
parentb7d6ee9b75650bd0ac36e89077d5d08a3eed9e3f (diff)
all: Remove unnecessary locals_dict cast.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'extmod/modbluetooth.c')
-rw-r--r--extmod/modbluetooth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/modbluetooth.c b/extmod/modbluetooth.c
index 2b7497e1b..2e058fc7d 100644
--- a/extmod/modbluetooth.c
+++ b/extmod/modbluetooth.c
@@ -981,7 +981,7 @@ STATIC MP_DEFINE_CONST_OBJ_TYPE(
MP_QSTR_BLE,
MP_TYPE_FLAG_NONE,
bluetooth_ble_make_new,
- locals_dict, (void *)&bluetooth_ble_locals_dict
+ locals_dict, &bluetooth_ble_locals_dict
);
STATIC const mp_rom_map_elem_t mp_module_bluetooth_globals_table[] = {