aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Peach <mrpeach@users.sourceforge.net>2014-11-10 22:01:37 +0000
committerMartin Peach <mrpeach@users.sourceforge.net>2014-11-10 22:01:37 +0000
commit038e16d4b81796a20e7cdde1d5035df2e317f10b (patch)
treed1aa60808c01cd46fdd80302e138eba50bb2dfcd
parentb26c22ceccc89dfe8f871d957d9671e6129f579a (diff)
Commented out unnecessary posts to console.
svn path=/trunk/externals/mrpeach/; revision=17375
-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]);