diff options
Diffstat (limited to 'unix/moduselect.c')
-rw-r--r-- | unix/moduselect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/moduselect.c b/unix/moduselect.c index 537bd47960..7e0ec049f1 100644 --- a/unix/moduselect.c +++ b/unix/moduselect.c @@ -52,7 +52,7 @@ typedef struct _mp_obj_poll_t { } mp_obj_poll_t; /// \method register(obj[, eventmask]) -STATIC mp_obj_t poll_register(uint n_args, const mp_obj_t *args) { +STATIC mp_obj_t poll_register(mp_uint_t n_args, const mp_obj_t *args) { mp_obj_poll_t *self = MP_OBJ_TO_PTR(args[0]); int fd = mp_obj_get_int(args[1]); mp_uint_t flags; @@ -129,7 +129,7 @@ MP_DEFINE_CONST_FUN_OBJ_3(poll_modify_obj, poll_modify); /// \method poll([timeout]) /// Timeout is in milliseconds. -STATIC mp_obj_t poll_poll(uint n_args, const mp_obj_t *args) { +STATIC mp_obj_t poll_poll(mp_uint_t n_args, const mp_obj_t *args) { mp_obj_poll_t *self = MP_OBJ_TO_PTR(args[0]); // work out timeout (it's given already in ms) |