diff options
Diffstat (limited to 'extmod/os_dupterm.c')
-rw-r--r-- | extmod/os_dupterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/os_dupterm.c b/extmod/os_dupterm.c index dcd9c54b9..156766a43 100644 --- a/extmod/os_dupterm.c +++ b/extmod/os_dupterm.c @@ -208,7 +208,7 @@ int mp_os_dupterm_tx_strn(const char *str, size_t len) { return did_write ? ret : -1; } -STATIC mp_obj_t mp_os_dupterm(size_t n_args, const mp_obj_t *args) { +static mp_obj_t mp_os_dupterm(size_t n_args, const mp_obj_t *args) { mp_int_t idx = 0; if (n_args == 2) { idx = mp_obj_get_int(args[1]); |