From 82265a69b891a0ec4faea74429fae35f90a3c106 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Sun, 29 Apr 2007 10:24:20 +0000 Subject: more on the road to M$ svn path=/trunk/externals/iem16/; revision=7616 --- src/iem16_array_tilde.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/iem16_array_tilde.c') diff --git a/src/iem16_array_tilde.c b/src/iem16_array_tilde.c index f323333..5e120f1 100644 --- a/src/iem16_array_tilde.c +++ b/src/iem16_array_tilde.c @@ -110,7 +110,7 @@ static void *tab16play_tilde_new(t_symbol *s){ x->x_limit = 0; x->x_arrayname = s; outlet_new(&x->x_obj, &s_signal); - x->x_bangout = outlet_new(&x->x_obj, &s_bang); + x->x_bangout = outlet_new(&x->x_obj, gensym("bang")); return (x); } @@ -306,7 +306,7 @@ static void tab16receive_dsp(t_tab16receive *x, t_signal **sp){ static void *tab16receive_new(t_symbol *s){ t_tab16receive *x = (t_tab16receive *)pd_new(tab16receive_class); x->x_arrayname = s; - outlet_new(&x->x_obj, &s_signal); + outlet_new(&x->x_obj, gensym("signal")); return (x); } -- cgit v1.2.1