commit | ab5689bc9df27d481c08f8087bf6c4f12b881255 | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Sat Mar 25 19:53:31 2017 +1100 |
committer | Damien George <damien.p.george@gmail.com> | Sat Mar 25 19:53:31 2017 +1100 |
tree | cae5034331fcc1289a7565a212377cf76811afa4 | |
parent | 64a4f11b2d6f880aa6fb1aaa10b2603d3faa1cd0 [diff] [blame] |
py/objarray: Use mp_obj_str_get_str instead of mp_obj_str_get_data.
diff --git a/py/objarray.c b/py/objarray.c index af75af9..05d28c8 100644 --- a/py/objarray.c +++ b/py/objarray.c
@@ -162,8 +162,7 @@ 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