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.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/iem16_array.c') diff --git a/src/iem16_array.c b/src/iem16_array.c index b756d4f..55d3d81 100644 --- a/src/iem16_array.c +++ b/src/iem16_array.c @@ -41,7 +41,7 @@ static void tab16read_set(t_tab16read *x, t_symbol *s){ static void *tab16read_new(t_symbol *s){ t_tab16read *x = (t_tab16read *)pd_new(tab16read_class); x->x_arrayname = s; - outlet_new(&x->x_obj, &s_float); + outlet_new(&x->x_obj, gensym("float")); return (x); } @@ -102,7 +102,7 @@ static void tab16read4_set(t_tab16read4 *x, t_symbol *s){ static void *tab16read4_new(t_symbol *s){ t_tab16read4 *x = (t_tab16read4 *)pd_new(tab16read4_class); x->x_arrayname = s; - outlet_new(&x->x_obj, &s_float); + outlet_new(&x->x_obj, gensym("float")); return (x); } -- cgit v1.2.1