aboutsummaryrefslogtreecommitdiff
path: root/py/modthread.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2019-01-30 21:57:29 +1100
committerDamien George <damien.p.george@gmail.com>2019-02-12 14:54:51 +1100
commit054dd33ebad67f5c8f328036fd32c3871589a386 (patch)
tree7779aa9369ad4aa7c34850b60962bd505187bdf0 /py/modthread.c
parenteee1e8841a852f374b83e0a3e3b0ff7b66e54243 (diff)
py: Downcase MP_xxx_SLOT_IS_FILLED inline functions.
Diffstat (limited to 'py/modthread.c')
-rw-r--r--py/modthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/modthread.c b/py/modthread.c
index 61ada5035..91237a72b 100644
--- a/py/modthread.c
+++ b/py/modthread.c
@@ -242,7 +242,7 @@ STATIC mp_obj_t mod_thread_start_new_thread(size_t n_args, const mp_obj_t *args)
th_args->n_kw = map->used;
// copy across the keyword arguments
for (size_t i = 0, n = pos_args_len; i < map->alloc; ++i) {
- if (MP_MAP_SLOT_IS_FILLED(map, i)) {
+ if (mp_map_slot_is_filled(map, i)) {
th_args->args[n++] = map->table[i].key;
th_args->args[n++] = map->table[i].value;
}