diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2012-02-03 00:11:51 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2012-02-04 17:54:36 -0700 |
commit | acad872c5bb8138cd2b0a065830cb88270f1d55f (patch) | |
tree | aaaa4b8bde1f584d090fa5d50fcc5a72ccd20b0f /numpy/lib/src | |
parent | 12fb59edc49c52a0800fa08b2f518cda06fc8d87 (diff) | |
download | numpy-acad872c5bb8138cd2b0a065830cb88270f1d55f.tar.gz |
UPD: Use prefixed macros in *.c files except numarray and linalg.
Diffstat (limited to 'numpy/lib/src')
-rw-r--r-- | numpy/lib/src/_compiled_base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/src/_compiled_base.c b/numpy/lib/src/_compiled_base.c index 536b048f5..20f8e02fa 100644 --- a/numpy/lib/src/_compiled_base.c +++ b/numpy/lib/src/_compiled_base.c @@ -1378,7 +1378,7 @@ pack_or_unpack_bits(PyObject *input, int axis, int unpack) PyArrayObject *inp; PyArrayObject *new = NULL; PyArrayObject *out = NULL; - npy_intp outdims[MAX_DIMS]; + npy_intp outdims[NPY_MAXDIMS]; int i; void (*thefunc)(void *, int, npy_intp, npy_intp, void *, npy_intp, npy_intp); PyArrayIterObject *it, *ot; |