diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-24 05:43:31 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-24 05:43:31 +0000 |
commit | 1b3333b52a242dff187c0254eba2cf9b1c182bb1 (patch) | |
tree | 8f9d26cea4ad21f801c2eab64b593b32dcf1d48a | |
parent | 3c11cd72a14a8e7ac5555736a5f575c305f66c20 (diff) | |
download | numpy-1b3333b52a242dff187c0254eba2cf9b1c182bb1.tar.gz |
Fixed C-API to not use special types
-rw-r--r-- | numpy/core/src/multiarraymodule.c | 4 |
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 |