diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2008-11-14 04:25:38 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2008-11-14 04:25:38 +0000 |
commit | cdffc01b366512e01034a8de312fe4287f3efd07 (patch) | |
tree | 810214db289aa91fc263999f482649fc82524558 /numpy/core/src/ufuncobject.c | |
parent | dcb98e00b4aed0190e3f541bd5dd934451ad07b0 (diff) | |
download | numpy-cdffc01b366512e01034a8de312fe4287f3efd07.tar.gz |
Remove trailing whitespace.
Diffstat (limited to 'numpy/core/src/ufuncobject.c')
-rw-r--r-- | numpy/core/src/ufuncobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/src/ufuncobject.c b/numpy/core/src/ufuncobject.c index 9940eb32e..d6e1a68f2 100644 --- a/numpy/core/src/ufuncobject.c +++ b/numpy/core/src/ufuncobject.c @@ -168,7 +168,7 @@ PyUFunc_F_F_As_D_D(char **args, intp *dimensions, intp *steps, void *func) UNARY_LOOP { const float *in1 = (float *)ip1; cdouble tmp = {(double)(in1[0]),(double)in1[1]}; - cdouble out; + cdouble out; f(&tmp, &out); ((float *)op1)[0] = (float)out.real; ((float *)op1)[1] = (float)out.imag; @@ -198,7 +198,7 @@ PyUFunc_FF_F_As_DD_D(char **args, intp *dimensions, intp *steps, void *func) const float *in2 = (float *)ip2; cdouble tmp1 = {(double)(in1[0]),(double)in1[1]}; cdouble tmp2 = {(double)(in2[0]),(double)in2[1]}; - cdouble out; + cdouble out; f(&tmp1, &tmp2, &out); ((float *)op1)[0] = (float)out.real; ((float *)op1)[1] = (float)out.imag; |