aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--serializer/b2f.c2
-rw-r--r--serializer/f2b.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/serializer/b2f.c b/serializer/b2f.c
index 91d1096..61b622b 100644
--- a/serializer/b2f.c
+++ b/serializer/b2f.c
@@ -27,7 +27,7 @@ static void b2f_list(t_b2f *x, t_symbol *s, int argc, t_atom *argv)
int i, d;
union fbuf buf;
- post("b2f_list: s is %s, argc is %d", s->s_name, argc);
+ //post("b2f_list: s is %s, argc is %d", s->s_name, argc);
if (0 != strncmp("list", s->s_name, 4))
{
post("b2f_list: not a list of floats");
diff --git a/serializer/f2b.c b/serializer/f2b.c
index a9ae19e..2dff5bb 100644
--- a/serializer/f2b.c
+++ b/serializer/f2b.c
@@ -29,7 +29,7 @@ static void f2b_float(t_f2b *x, t_float f)
t_atom outs[4];
- post("f2b_float: f is %f", f);
+ //post("f2b_float: f is %f", f);
buf.f = f;
for (i = 0; i < 4; ++i) SETFLOAT(&outs[i], buf.b[i]);