aboutsummaryrefslogtreecommitdiff
path: root/src/tab_carth2polar.c
diff options
context:
space:
mode:
authormusil <tmusil@users.sourceforge.net>2009-05-14 12:42:28 +0000
committermusil <tmusil@users.sourceforge.net>2009-05-14 12:42:28 +0000
commit6890816bcf762feded0048e53e9d5db721f3df42 (patch)
tree273141130f36e22df07e631c282df9bb9610a1a8 /src/tab_carth2polar.c
parent5995a16bcd7603ee6e291cab79257950ff1487c5 (diff)
some wrong pointers casted to t_array instead of t_float
svn path=/trunk/externals/iem/iem_tab/; revision=11356
Diffstat (limited to 'src/tab_carth2polar.c')
-rw-r--r--src/tab_carth2polar.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tab_carth2polar.c b/src/tab_carth2polar.c
index e70d2b8..9dccd68 100644
--- a/src/tab_carth2polar.c
+++ b/src/tab_carth2polar.c
@@ -96,8 +96,6 @@ static void tab_carth2polar_bang(t_tab_carth2polar *x)
im = iemarray_getfloat(vec_src_im, i);
mag = sqrt(re*re + im*im);
arg = atan2(im, re) * rcp_two_pi;
- vec_dst_mag[i] = mag;
- vec_dst_arg[i] = arg;
iemarray_setfloat(vec_dst_mag, i, mag);
iemarray_setfloat(vec_dst_arg, i, arg);
}