From 78d3861035fad392bcf7b7a424931beaf589bc72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 13 Jan 2009 16:50:33 +0000 Subject: make array access 64bit-able svn path=/trunk/externals/iem/iem_spec2/; revision=10530 --- src/spec2_tab_conv~.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/spec2_tab_conv~.c') 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 { -- cgit v1.2.1