summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/src/umath/matmul.c.src2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/umath/matmul.c.src b/numpy/core/src/umath/matmul.c.src
index 18a82f91e..bc6204772 100644
--- a/numpy/core/src/umath/matmul.c.src
+++ b/numpy/core/src/umath/matmul.c.src
@@ -295,7 +295,7 @@ OBJECT_matmul_inner_noblas(void *_ip1, npy_intp is1_m, npy_intp is1_n,
obj1 = Py_None;
}
if (obj2 == NULL) {
- ip2 = Py_None;
+ obj2 = Py_None;
}
product = PyNumber_Multiply(obj1, obj2);