From 1c189b3f2ceb5e4990998c88ba365711278f18e8 Mon Sep 17 00:00:00 2001 From: Christoph Gohlke Date: Fri, 8 Mar 2013 09:51:22 -0800 Subject: [PATCH] 64 bit proof alloc_array --- path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/path.c b/path.c index 622edb10a..029eeee87 100644 --- a/path.c +++ b/path.c @@ -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) {