diff options
Diffstat (limited to 'binfile/binfile.c')
-rw-r--r-- | binfile/binfile.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/binfile/binfile.c b/binfile/binfile.c index bdd634e..c32c9af 100644 --- a/binfile/binfile.c +++ b/binfile/binfile.c @@ -233,10 +233,9 @@ static void binfile_bang(t_binfile *x) if (x->x_rd_offset < x->x_length) { c = x->x_buf[x->x_rd_offset++]; - if (x->x_rd_offset == x->x_length) outlet_bang(x->x_bang_outlet); outlet_float(x->x_bin_outlet, (float)c); } - else outlet_bang(x->x_bin_outlet); + else outlet_bang(x->x_bang_outlet); } /* The arguments of the ``list''-method |