From 6af1bae3aa930ec70d495ddd644c00bce14eb3fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Mon, 3 Oct 2011 17:15:34 +0000 Subject: replaced &s_ with gensym() svn path=/trunk/externals/zexy/; revision=15490 --- src/time.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/time.c') diff --git a/src/time.c b/src/time.c index 2f79c73..86f277f 100644 --- a/src/time.c +++ b/src/time.c @@ -70,10 +70,10 @@ static void *time_new(t_symbol *s, int argc, t_atom *argv) x->GMT = 1; } - x->x_outlet1 = outlet_new(&x->x_obj, &s_float); - x->x_outlet2 = outlet_new(&x->x_obj, &s_float); - x->x_outlet3 = outlet_new(&x->x_obj, &s_float); - x->x_outlet4 = outlet_new(&x->x_obj, &s_float); + x->x_outlet1 = outlet_new(&x->x_obj, gensym("float")); + x->x_outlet2 = outlet_new(&x->x_obj, gensym("float")); + x->x_outlet3 = outlet_new(&x->x_obj, gensym("float")); + x->x_outlet4 = outlet_new(&x->x_obj, gensym("float")); return (x); } -- cgit v1.2.1