summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Wieser <wieser.eric@gmail.com>2019-04-13 14:07:56 -0700
committerGitHub <noreply@github.com>2019-04-13 14:07:56 -0700
commitcc8b978cc3c0abe57c3784b99302a04f2c2701d9 (patch)
tree12ee0cac78c84df32027fd6cafec49639eebdaad
parentb18e32efc3f5b77630a1d4f05399fc15c69831b3 (diff)
parent6dac2d6a4a061a39cc41f93641c0c29085cd10a6 (diff)
downloadnumpy-cc8b978cc3c0abe57c3784b99302a04f2c2701d9.tar.gz
Merge pull request #13323 from seberg/ufunc-at-large-iteration
BUG: ufunc.at iteration variable size fix
-rw-r--r--numpy/core/src/umath/ufunc_object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/umath/ufunc_object.c b/numpy/core/src/umath/ufunc_object.c
index f5084e6b3..6a96fe296 100644
--- a/numpy/core/src/umath/ufunc_object.c
+++ b/numpy/core/src/umath/ufunc_object.c
@@ -5572,7 +5572,7 @@ ufunc_at(PyUFuncObject *ufunc, PyObject *args)
PyUFuncGenericFunction innerloop;
void *innerloopdata;
- int i;
+ npy_intp i;
int nop;
/* override vars */