summaryrefslogtreecommitdiff
path: root/numpy/core/src
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/core/src')
-rw-r--r--numpy/core/src/multiarraymodule.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/src/multiarraymodule.c b/numpy/core/src/multiarraymodule.c
index d5e182fd6..7847ad6e4 100644
--- a/numpy/core/src/multiarraymodule.c
+++ b/numpy/core/src/multiarraymodule.c
@@ -2659,7 +2659,8 @@ PyArray_SearchSorted(PyArrayObject *op1, PyObject *op2, NPY_SEARCHKIND which)
NPY_BEGIN_THREADS_DESCR(ap2->descr)
local_search_left(ap1, ap2, ret);
NPY_END_THREADS_DESCR(ap2->descr)
- } else if (which == NPY_SEARCHRIGHT) {
+ }
+ else if (which == NPY_SEARCHRIGHT) {
NPY_BEGIN_THREADS_DESCR(ap2->descr)
local_search_right(ap1, ap2, ret);
NPY_END_THREADS_DESCR(ap2->descr)