diff options
-rw-r--r-- | numpy/core/src/multiarray/item_selection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/multiarray/item_selection.c b/numpy/core/src/multiarray/item_selection.c index a0fd0a574..5e70c406a 100644 --- a/numpy/core/src/multiarray/item_selection.c +++ b/numpy/core/src/multiarray/item_selection.c @@ -2646,7 +2646,7 @@ PyArray_Nonzero(PyArrayObject *self) * stalls that are very expensive on most modern processors. */ else { - npy_intp * multi_index_end = multi_index + nonzero_count; + npy_intp *multi_index_end = multi_index + nonzero_count; npy_intp j = 0; while (multi_index + 4 < multi_index_end) { |