From c0beea4ad31024a173622f37d4fc3c6ac00a91d8 Mon Sep 17 00:00:00 2001 From: Tommy Vestermark Date: Fri, 10 Jul 2015 21:29:01 +0200 Subject: [PATCH] Make bitbuffer even less noisy Some decoders with large .short_limit may add a lot of bits... --- src/bitbuffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bitbuffer.c b/src/bitbuffer.c index 54f182d8..2ad66aac 100644 --- a/src/bitbuffer.c +++ b/src/bitbuffer.c @@ -34,7 +34,7 @@ void bitbuffer_add_bit(bitbuffer_t *bits, int bit) { bits->bits_per_row[bits->row_index]++; } else { - fprintf(stderr, "ERROR: bitbuffer:: Could not add more columns\n"); +// fprintf(stderr, "ERROR: bitbuffer:: Could not add more columns\n"); // Some decoders may add many columns... } }