aboutsummaryrefslogtreecommitdiff
path: root/src/step~.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/step~.c
parentf2dc8bbfc49d98835db4b767ac0ae3265f592000 (diff)
replaced &s_ with gensym()
svn path=/trunk/externals/zexy/; revision=15490
Diffstat (limited to 'src/step~.c')
-rw-r--r--src/step~.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/step~.c b/src/step~.c
index 5772208..d1e8757 100644
--- a/src/step~.c
+++ b/src/step~.c
@@ -116,8 +116,8 @@ static void *step_new(t_floatarg farg)
{
t_step *x = (t_step *)pd_new(step_class);
- inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_float, gensym("ft1"));
- outlet_new(&x->x_obj, &s_signal);
+ inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("float"), gensym("ft1"));
+ outlet_new(&x->x_obj, gensym("signal"));
x->position = 0;
x->wait4start = x->wait4stop = 0;