diff options
Diffstat (limited to 'extmod/moduhashlib.c')
-rw-r--r-- | extmod/moduhashlib.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/extmod/moduhashlib.c b/extmod/moduhashlib.c index 8c6b34a4ca..1c2e76b042 100644 --- a/extmod/moduhashlib.c +++ b/extmod/moduhashlib.c @@ -105,16 +105,7 @@ STATIC const mp_map_elem_t mp_module_hashlib_globals_table[] = { { MP_OBJ_NEW_QSTR(MP_QSTR_sha256), (mp_obj_t)&sha256_type }, }; -STATIC const mp_obj_dict_t mp_module_hashlib_globals = { - .base = {&mp_type_dict}, - .map = { - .all_keys_are_qstrs = 1, - .table_is_fixed_array = 1, - .used = MP_ARRAY_SIZE(mp_module_hashlib_globals_table), - .alloc = MP_ARRAY_SIZE(mp_module_hashlib_globals_table), - .table = (mp_map_elem_t*)mp_module_hashlib_globals_table, - }, -}; +STATIC MP_DEFINE_CONST_DICT(mp_module_hashlib_globals, mp_module_hashlib_globals_table); const mp_obj_module_t mp_module_uhashlib = { .base = { &mp_type_module }, |