Commit 99e812b7 by Victor M. Alvarez

Rename "count" field to "lenght".

parent 08863db6
......@@ -508,7 +508,7 @@ PyObject* convert_array_to_python(
if (array->items == NULL)
return py_list;
for (i = 0; i < array->items->count; i++)
for (i = 0; i < array->items->length; i++)
{
py_object = convert_object_to_python(array->items->objects[i]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment