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/objstringio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/objstringio.c') diff --git a/py/objstringio.c b/py/objstringio.c index d3673d1f9..e5abc0526 100644 --- a/py/objstringio.c +++ b/py/objstringio.c @@ -95,7 +95,7 @@ STATIC mp_obj_t stringio_close(mp_obj_t self_in) { } STATIC MP_DEFINE_CONST_FUN_OBJ_1(stringio_close_obj, stringio_close); -mp_obj_t stringio___exit__(mp_uint_t n_args, const mp_obj_t *args) { +STATIC mp_obj_t stringio___exit__(mp_uint_t n_args, const mp_obj_t *args) { return stringio_close(args[0]); } STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(stringio___exit___obj, 4, 4, stringio___exit__); -- cgit v1.2.3