From 969a6b37bfc655609e540053c2bdcce8a6fdc64d Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 10 Dec 2014 22:07:04 +0000 Subject: py: Make functions static where appropriate. --- py/objlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/objlist.c') diff --git a/py/objlist.c b/py/objlist.c index 1531b6be9..3e5355719 100644 --- a/py/objlist.c +++ b/py/objlist.c @@ -497,7 +497,7 @@ typedef struct _mp_obj_list_it_t { mp_uint_t cur; } mp_obj_list_it_t; -mp_obj_t list_it_iternext(mp_obj_t self_in) { +STATIC mp_obj_t list_it_iternext(mp_obj_t self_in) { mp_obj_list_it_t *self = self_in; if (self->cur < self->list->len) { mp_obj_t o_out = self->list->items[self->cur]; -- cgit v1.2.3