This commit is contained in:
Christoph Gohlke 2013-03-08 12:59:38 -08:00
commit a825a9ed3b

2
path.c
View File

@ -50,7 +50,7 @@ typedef struct {
static PyTypeObject PyPathType;
static double*
alloc_array(int count)
alloc_array(Py_ssize_t count)
{
double* xy;
if (count < 0) {