summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorJay Bourque <jay.bourque@continuum.io>2013-05-10 14:58:24 -0500
committerJay Bourque <jay.bourque@continuum.io>2013-05-14 18:02:22 -0500
commitb9f5e8faf8bf7ba9030511e77b0e65581505d620 (patch)
treefe043200f4bf39a7a5f901037f7a769dd953fbc1 /numpy
parentd812c0ded39aca8bdf60d499a9cea1a3bb7a2c6b (diff)
downloadnumpy-b9f5e8faf8bf7ba9030511e77b0e65581505d620.tar.gz
Whitespace change
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/src/umath/ufunc_type_resolution.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/numpy/core/src/umath/ufunc_type_resolution.c b/numpy/core/src/umath/ufunc_type_resolution.c
index 4943eb023..6a16692b0 100644
--- a/numpy/core/src/umath/ufunc_type_resolution.c
+++ b/numpy/core/src/umath/ufunc_type_resolution.c
@@ -1555,8 +1555,9 @@ set_ufunc_loop_data_types(PyUFuncObject *self, PyArrayObject **op,
* Copy the dtype from 'op' if the type_num matches,
* to preserve metadata.
*/
- } else if (op[i] != NULL &&
- PyArray_DESCR(op[i])->type_num == type_nums[i]) {
+ }
+ else if (op[i] != NULL &&
+ PyArray_DESCR(op[i])->type_num == type_nums[i]) {
out_dtypes[i] = ensure_dtype_nbo(PyArray_DESCR(op[i]));
Py_XINCREF(out_dtypes[i]);
}