aboutsummaryrefslogtreecommitdiff
path: root/udpsend.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2010-03-29 17:30:33 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2010-03-29 17:30:33 +0000
commitbbca313506e4a50f849a2d27def90304e3a819df (patch)
tree578b9431891fde713ccd0df384146a074d42e211 /udpsend.c
parent7f5dc144c3b2d1811e96337d4e45bfb2aeaef4cd (diff)
replaced &s_... by gensym("...")
this time it's the right lib svn path=/trunk/externals/iem/iemnet/; revision=13307
Diffstat (limited to 'udpsend.c')
-rw-r--r--udpsend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/udpsend.c b/udpsend.c
index bbfa2a9..8751ddb 100644
--- a/udpsend.c
+++ b/udpsend.c
@@ -119,7 +119,7 @@ static void udpsend_free(t_udpsend *x)
static void *udpsend_new(void)
{
t_udpsend *x = (t_udpsend *)pd_new(udpsend_class);
- outlet_new(&x->x_obj, &s_float);
+ outlet_new(&x->x_obj, gensym("float"));
x->x_sender=NULL;
return (x);
}