diff options
Diffstat (limited to 'unix/modtime.c')
-rw-r--r-- | unix/modtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/modtime.c b/unix/modtime.c index 32a4a6c71f..d3b780790c 100644 --- a/unix/modtime.c +++ b/unix/modtime.c @@ -154,7 +154,7 @@ STATIC mp_obj_t mod_time_sleep_us(mp_obj_t arg) { } STATIC MP_DEFINE_CONST_FUN_OBJ_1(mod_time_sleep_us_obj, mod_time_sleep_us); -STATIC mp_obj_t mod_time_strftime(mp_uint_t n_args, const mp_obj_t *args) { +STATIC mp_obj_t mod_time_strftime(size_t n_args, const mp_obj_t *args) { time_t t; if (n_args == 1) { t = time(NULL); |