diff options
| author | Damien George <damien.p.george@gmail.com> | 2014-12-10 22:07:04 +0000 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2014-12-10 22:08:14 +0000 |
| commit | 969a6b37bfc655609e540053c2bdcce8a6fdc64d (patch) | |
| tree | 5e7d74f72d702efd07ff6ba6d93d3a10e4e00fd2 /py/objdict.c | |
| parent | d51107927d53a80835195ba1ac97048c203f05f2 (diff) | |
py: Make functions static where appropriate.
Diffstat (limited to 'py/objdict.c')
| -rw-r--r-- | py/objdict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objdict.c b/py/objdict.c index a62432042..2f4ae7083 100644 --- a/py/objdict.c +++ b/py/objdict.c @@ -491,7 +491,7 @@ STATIC const mp_obj_type_t dict_view_type = { .getiter = dict_view_getiter, }; -mp_obj_t mp_obj_new_dict_view(mp_obj_dict_t *dict, mp_dict_view_kind_t kind) { +STATIC mp_obj_t mp_obj_new_dict_view(mp_obj_dict_t *dict, mp_dict_view_kind_t kind) { mp_obj_dict_view_t *o = m_new_obj(mp_obj_dict_view_t); o->base.type = &dict_view_type; o->dict = dict; |
