From 038e16d4b81796a20e7cdde1d5035df2e317f10b Mon Sep 17 00:00:00 2001 From: Martin Peach Date: Mon, 10 Nov 2014 22:01:37 +0000 Subject: Commented out unnecessary posts to console. svn path=/trunk/externals/mrpeach/; revision=17375 --- serializer/b2f.c | 2 +- serializer/f2b.c | 2 +- 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]); -- cgit v1.2.1