Skip to content
Snippets Groups Projects
Commit f2f8ae11 authored by Damien George's avatar Damien George
Browse files

extmod/modujson: Fix nanbox build.

parent 11ab807d
No related branches found
No related tags found
No related merge requests found
...@@ -278,7 +278,7 @@ STATIC mp_obj_t mod_ujson_loads(mp_obj_t obj) { ...@@ -278,7 +278,7 @@ STATIC mp_obj_t mod_ujson_loads(mp_obj_t obj) {
const char *buf = mp_obj_str_get_data(obj, &len); const char *buf = mp_obj_str_get_data(obj, &len);
vstr_t vstr = {len, len, (char*)buf, true}; vstr_t vstr = {len, len, (char*)buf, true};
mp_obj_stringio_t sio = {{&mp_type_stringio}, &vstr, 0}; mp_obj_stringio_t sio = {{&mp_type_stringio}, &vstr, 0};
return mod_ujson_load(&sio); return mod_ujson_load(MP_OBJ_FROM_PTR(&sio));
} }
STATIC MP_DEFINE_CONST_FUN_OBJ_1(mod_ujson_loads_obj, mod_ujson_loads); STATIC MP_DEFINE_CONST_FUN_OBJ_1(mod_ujson_loads_obj, mod_ujson_loads);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment