unix: Use mp_obj_str_get_str instead of mp_obj_str_get_data.

This commit is contained in:
Damien George
2017-03-25 19:54:07 +11:00
parent ab5689bc9d
commit 29424304d9
3 changed files with 5 additions and 10 deletions

View File

@@ -126,8 +126,7 @@ STATIC ffi_type *char2ffi_type(char c)
STATIC ffi_type *get_ffi_type(mp_obj_t o_in)
{
if (MP_OBJ_IS_STR(o_in)) {
mp_uint_t len;
const char *s = mp_obj_str_get_data(o_in, &len);
const char *s = mp_obj_str_get_str(o_in);
ffi_type *t = char2ffi_type(*s);
if (t != NULL) {
return t;