aboutsummaryrefslogtreecommitdiff
path: root/src/liststorage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/liststorage.c')
-rw-r--r--src/liststorage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liststorage.c b/src/liststorage.c
index 1afffe7..145c3ff 100644
--- a/src/liststorage.c
+++ b/src/liststorage.c
@@ -345,8 +345,8 @@ static void *liststorage_new(t_floatarg f)
t_liststorage *x = (t_liststorage *)pd_new(liststorage_class);
int slots=f;
- x->x_slotin=inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_float, gensym("slot"));
- x->x_dataout=outlet_new(&x->x_obj, &s_list);
+ x->x_slotin=inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("float"), gensym("slot"));
+ x->x_dataout=outlet_new(&x->x_obj, gensym("list"));
x->x_infoout=outlet_new(&x->x_obj, 0);