diff options
Diffstat (limited to 'py/objnone.c')
-rw-r--r-- | py/objnone.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objnone.c b/py/objnone.c index 5b25cd38c..a8ce8ebfe 100644 --- a/py/objnone.c +++ b/py/objnone.c @@ -34,7 +34,7 @@ typedef struct _mp_obj_none_t { } mp_obj_none_t; #endif -STATIC void none_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t kind) { +static void none_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t kind) { (void)self_in; if (MICROPY_PY_JSON && kind == PRINT_JSON) { mp_print_str(print, "null"); |