aboutsummaryrefslogtreecommitdiff
path: root/src/time.c
diff options
context:
space:
mode:
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);
}