Skip to content

Commit

Permalink
extmod/moduselect: Adjust select_select and poll_register to use size_t.
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv authored and dpgeorge committed Mar 13, 2019
1 parent 912e957 commit 921b999
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extmod/moduselect.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ STATIC mp_uint_t poll_map_poll(mp_map_t *poll_map, size_t *rwx_num) {
}

/// \function select(rlist, wlist, xlist[, timeout])
STATIC mp_obj_t select_select(uint n_args, const mp_obj_t *args) {
STATIC mp_obj_t select_select(size_t n_args, const mp_obj_t *args) {
// get array data from tuple/list arguments
size_t rwx_len[3];
mp_obj_t *r_array, *w_array, *x_array;
Expand Down Expand Up @@ -190,7 +190,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(size_t n_args, const mp_obj_t *args) {
mp_obj_poll_t *self = MP_OBJ_TO_PTR(args[0]);
mp_uint_t flags;
if (n_args == 3) {
Expand Down

0 comments on commit 921b999

Please sign in to comment.