aboutsummaryrefslogtreecommitdiff
path: root/src/time.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-10-03 17:15:34 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-10-03 17:15:34 +0000
commit6af1bae3aa930ec70d495ddd644c00bce14eb3fb (patch)
treefd572a8c664e347eb9565c301c20a85c5755db12 /src/time.c
parentf2dc8bbfc49d98835db4b767ac0ae3265f592000 (diff)
replaced &s_ with gensym()
svn path=/trunk/externals/zexy/; revision=15490
Diffstat (limited to 'src/time.c')
-rw-r--r--src/time.c8
1 files changed, 4 insertions, 4 deletions
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);
}