From ab5689bc9df27d481c08f8087bf6c4f12b881255 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 25 Mar 2017 19:53:31 +1100 Subject: [PATCH] py/objarray: Use mp_obj_str_get_str instead of mp_obj_str_get_data. --- py/objarray.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/py/objarray.c b/py/objarray.c index af75af9175..05d28c8a8c 100644 --- a/py/objarray.c +++ b/py/objarray.c @@ -162,8 +162,7 @@ STATIC mp_obj_t array_make_new(const mp_obj_type_t *type_in, size_t n_args, size mp_arg_check_num(n_args, n_kw, 1, 2, false); // get typecode - mp_uint_t l; - const char *typecode = mp_obj_str_get_data(args[0], &l); + const char *typecode = mp_obj_str_get_str(args[0]); if (n_args == 1) { // 1 arg: make an empty array