Browse Source

ffi: Fix mp_obj_str_get_data() return type.

pull/267/head
Paul Sokolovsky 11 years ago
parent
commit
21c51f0bde
  1. 2
      unix/ffi.c

2
unix/ffi.c

@ -71,7 +71,7 @@ static ffi_type *get_ffi_type(mp_obj_t o_in)
{ {
if (MP_OBJ_IS_STR(o_in)) { if (MP_OBJ_IS_STR(o_in)) {
uint len; uint len;
const byte *s = mp_obj_str_get_data(o_in, &len); const char *s = mp_obj_str_get_data(o_in, &len);
ffi_type *t = char2ffi_type(*s); ffi_type *t = char2ffi_type(*s);
if (t != NULL) { if (t != NULL) {
return t; return t;

Loading…
Cancel
Save