diff options
author | Damien George <damien.p.george@gmail.com> | 2015-11-27 13:38:15 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-11-29 14:25:04 +0000 |
commit | cbf7674025814797f5c537d6d1c195efe58ccaaf (patch) | |
tree | 7c1e5d7956d3766dad4c194ab00024e2a954bcf9 /py/builtinimport.c | |
parent | 94fe6e523d42ecc342c1f6a9734ed2edf232ddbd (diff) | |
download | micropython-cbf7674025814797f5c537d6d1c195efe58ccaaf.tar.gz micropython-cbf7674025814797f5c537d6d1c195efe58ccaaf.zip |
py: Add MP_ROM_* macros and mp_rom_* types and use them.
Diffstat (limited to 'py/builtinimport.c')
-rw-r--r-- | py/builtinimport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/builtinimport.c b/py/builtinimport.c index 97ea23ca81..d50f418590 100644 --- a/py/builtinimport.c +++ b/py/builtinimport.c @@ -47,7 +47,7 @@ #define PATH_SEP_CHAR '/' #if MICROPY_MODULE_WEAK_LINKS -STATIC const mp_map_elem_t mp_builtin_module_weak_links_table[] = { +STATIC const mp_rom_map_elem_t mp_builtin_module_weak_links_table[] = { MICROPY_PORT_BUILTIN_MODULE_WEAK_LINKS }; |