Mark index unsigned in get_pylist_from_git_strarray()

Signed-off-by: Lukas Fleischer <lfleischer@lfos.de>
This commit is contained in:
Lukas Fleischer 2017-05-07 07:47:00 +02:00
parent 21d668421f
commit 035d4a9396

@ -93,7 +93,7 @@ py_str_borrow_c_str(PyObject **tvalue, PyObject *value, const char *encoding)
PyObject *
get_pylist_from_git_strarray(git_strarray *strarray)
{
int index;
size_t index;
PyObject *new_list;
new_list = PyList_New(strarray->count);