summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-01-24 05:43:31 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-01-24 05:43:31 +0000
commit1b3333b52a242dff187c0254eba2cf9b1c182bb1 (patch)
tree8f9d26cea4ad21f801c2eab64b593b32dcf1d48a
parent3c11cd72a14a8e7ac5555736a5f575c305f66c20 (diff)
downloadnumpy-1b3333b52a242dff187c0254eba2cf9b1c182bb1.tar.gz
Fixed C-API to not use special types
-rw-r--r--numpy/core/src/multiarraymodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/src/multiarraymodule.c b/numpy/core/src/multiarraymodule.c
index 79f634246..11f5d7e7d 100644
--- a/numpy/core/src/multiarraymodule.c
+++ b/numpy/core/src/multiarraymodule.c
@@ -5112,10 +5112,10 @@ array_arange(PyObject *ignored, PyObject *args, PyObject *kws) {
/*MULTIARRAY_API
GetNDArrayCVersion
*/
-static uint
+static unsigned int
PyArray_GetNDArrayCVersion(void)
{
- return (uint)NDARRAY_VERSION;
+ return (unsigned int)NDARRAY_VERSION;
}
static char