aboutsummaryrefslogtreecommitdiff
path: root/src/spec2_tab_conv~.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2009-01-13 16:50:33 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2009-01-13 16:50:33 +0000
commit78d3861035fad392bcf7b7a424931beaf589bc72 (patch)
treefe4119da310fae4a21190a8245a1615c5b1cc004 /src/spec2_tab_conv~.c
parentce4cd4503e8d92146f19ef033d0c0a52cde794a8 (diff)
make array access 64bit-able
svn path=/trunk/externals/iem/iem_spec2/; revision=10530
Diffstat (limited to 'src/spec2_tab_conv~.c')
-rw-r--r--src/spec2_tab_conv~.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/spec2_tab_conv~.c b/src/spec2_tab_conv~.c
index e165a71..42d279c 100644
--- a/src/spec2_tab_conv~.c
+++ b/src/spec2_tab_conv~.c
@@ -12,7 +12,7 @@ typedef struct spec2_tab_conv_tilde
{
t_object x_obj;
t_float *x_spec;
- t_float *x_beg_array;
+ iemarray_t *x_beg_array;
int x_blocksize;
int x_winsize;
int x_has_changed;
@@ -82,7 +82,7 @@ static void spec2_tab_conv_tilde_dsp(t_spec2_tab_conv_tilde *x, t_signal **sp)
if(*x->x_sym_array->s_name)
error("spec2_tab_conv~: %s: no such array", x->x_sym_array->s_name);
}
- else if(!garray_getfloatarray(a, &n_points, &x->x_beg_array))
+ else if(!iemarray_getarray(a, &n_points, &x->x_beg_array))
error("%s: bad template for spec2_tab_conv~", x->x_sym_array->s_name);
else
{