aboutsummaryrefslogtreecommitdiff
path: root/src/minmax.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/minmax.c
parentf2dc8bbfc49d98835db4b767ac0ae3265f592000 (diff)
replaced &s_ with gensym()
svn path=/trunk/externals/zexy/; revision=15490
Diffstat (limited to 'src/minmax.c')
-rw-r--r--src/minmax.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/minmax.c b/src/minmax.c
index 58f82b2..ed4f017 100644
--- a/src/minmax.c
+++ b/src/minmax.c
@@ -61,8 +61,8 @@ static void *minmax_new(void)
{
t_minmax *x = (t_minmax *)pd_new(minmax_class);
- x->mino=outlet_new(&x->x_obj, &s_float);
- x->maxo=outlet_new(&x->x_obj, &s_float);
+ x->mino=outlet_new(&x->x_obj, gensym("float"));
+ x->maxo=outlet_new(&x->x_obj, gensym("float"));
x->min = x->max = 0;