diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2022-08-18 14:47:56 +1000 |
---|---|---|
committer | Jim Mussared <jim.mussared@gmail.com> | 2023-06-08 17:54:04 +1000 |
commit | 1bf2dcb15ecf4ba37211327f4378b164a5aaf567 (patch) | |
tree | 801a5d3770aa8ed4ce7ceab2c7dcea4fd7db65cf /py/modstruct.c | |
parent | dfe232d0003b9f381643050c06c547fc3093e9e1 (diff) |
all: Rename mp_umodule*, mp_module_umodule* to remove the "u" prefix.
This work was funded through GitHub Sponsors.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'py/modstruct.c')
-rw-r--r-- | py/modstruct.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/modstruct.c b/py/modstruct.c index 78c7d53e4..e908c73e1 100644 --- a/py/modstruct.c +++ b/py/modstruct.c @@ -261,11 +261,11 @@ STATIC const mp_rom_map_elem_t mp_module_struct_globals_table[] = { STATIC MP_DEFINE_CONST_DICT(mp_module_struct_globals, mp_module_struct_globals_table); -const mp_obj_module_t mp_module_ustruct = { +const mp_obj_module_t mp_module_struct = { .base = { &mp_type_module }, .globals = (mp_obj_dict_t *)&mp_module_struct_globals, }; -MP_REGISTER_MODULE(MP_QSTR_struct, mp_module_ustruct); +MP_REGISTER_MODULE(MP_QSTR_struct, mp_module_struct); #endif |