From 3f810daeb310520beb1635510430c0c6b6123548 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 26 Mar 2017 19:20:06 +1100 Subject: [PATCH] py/obj: Change mp_uint_t to size_t for mp_obj_get_array_fixed_n len arg. --- py/obj.c | 2 +- py/obj.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/py/obj.c b/py/obj.c index 65a35c86fd..c065a3bfcc 100644 --- a/py/obj.c +++ b/py/obj.c @@ -337,7 +337,7 @@ void mp_obj_get_array(mp_obj_t o, mp_uint_t *len, mp_obj_t **items) { } // note: returned value in *items may point to the interior of a GC block -void mp_obj_get_array_fixed_n(mp_obj_t o, mp_uint_t len, mp_obj_t **items) { +void mp_obj_get_array_fixed_n(mp_obj_t o, size_t len, mp_obj_t **items) { mp_uint_t seq_len; mp_obj_get_array(o, &seq_len, items); if (seq_len != len) { diff --git a/py/obj.h b/py/obj.h index fc122c4905..71945f4f1d 100644 --- a/py/obj.h +++ b/py/obj.h @@ -677,7 +677,7 @@ void mp_obj_get_complex(mp_obj_t self_in, mp_float_t *real, mp_float_t *imag); #endif //qstr mp_obj_get_qstr(mp_obj_t arg); void mp_obj_get_array(mp_obj_t o, mp_uint_t *len, mp_obj_t **items); // *items may point inside a GC block -void mp_obj_get_array_fixed_n(mp_obj_t o, mp_uint_t len, mp_obj_t **items); // *items may point inside a GC block +void mp_obj_get_array_fixed_n(mp_obj_t o, size_t len, mp_obj_t **items); // *items may point inside a GC block size_t mp_get_index(const mp_obj_type_t *type, size_t len, mp_obj_t index, bool is_slice); mp_obj_t mp_obj_id(mp_obj_t o_in); mp_obj_t mp_obj_len(mp_obj_t o_in);