summaryrefslogtreecommitdiffstatshomepage
path: root/py/map.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/map.c')
-rw-r--r--py/map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/map.c b/py/map.c
index 5f3c6e5473..2570941bf1 100644
--- a/py/map.c
+++ b/py/map.c
@@ -96,7 +96,7 @@ void mp_map_init_fixed_table(mp_map_t *map, size_t n, const mp_obj_t *table) {
map->all_keys_are_qstrs = 1;
map->is_fixed = 1;
map->is_ordered = 1;
- map->table = (mp_map_elem_t*)table;
+ map->table = (mp_map_elem_t *)table;
}
// Differentiate from mp_map_clear() - semantics is different