From 2801e6fad8b8b3ecdd9c8bc58f9515ff66eca46c Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 4 Apr 2015 15:53:11 +0100 Subject: py: Some trivial cosmetic changes, for code style consistency. --- py/map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/map.c') diff --git a/py/map.c b/py/map.c index 93057b59b..8cfc19b69 100644 --- a/py/map.c +++ b/py/map.c @@ -136,7 +136,7 @@ STATIC void mp_map_rehash(mp_map_t *map) { // - returns slot, with key non-null and value=MP_OBJ_NULL if it was added // MP_MAP_LOOKUP_REMOVE_IF_FOUND behaviour: // - returns NULL if not found, else the slot if was found in with key null and value non-null -mp_map_elem_t* mp_map_lookup(mp_map_t *map, mp_obj_t index, mp_map_lookup_kind_t lookup_kind) { +mp_map_elem_t *mp_map_lookup(mp_map_t *map, mp_obj_t index, mp_map_lookup_kind_t lookup_kind) { // Work out if we can compare just pointers bool compare_only_ptrs = map->all_keys_are_qstrs; -- cgit v1.2.3