objstr: Fix bytes creation from array of long ints.
diff --git a/py/objstr.c b/py/objstr.c
index 43de047..9baaedf 100644
--- a/py/objstr.c
+++ b/py/objstr.c
@@ -223,7 +223,7 @@
     mp_obj_t iterable = mp_getiter(args[0]);
     mp_obj_t item;
     while ((item = mp_iternext(iterable)) != MP_OBJ_STOP_ITERATION) {
-        vstr_add_byte(&vstr, MP_OBJ_SMALL_INT_VALUE(item));
+        vstr_add_byte(&vstr, mp_obj_get_int(item));
     }
 
     return mp_obj_new_str_from_vstr(&mp_type_bytes, &vstr);