OSDN Git Service

debugging code was removed.
authorKoji Arai <jca02266@gmail.com>
Tue, 17 Jun 2008 09:16:36 +0000 (18:16 +0900)
committerKoji Arai <jca02266@gmail.com>
Tue, 17 Jun 2008 09:16:36 +0000 (18:16 +0900)
io.c

diff --git a/io.c b/io.c
index 7ed72e2..8f5e09b 100644 (file)
--- a/io.c
+++ b/io.c
@@ -109,15 +109,6 @@ fillbuf(struct lzh_istream *rp, int n)
         rp->bitcount = CHAR_BIT;
     }
     /* set n bits from subbitbuf */
-#if 0
-    if (rp->bitcount < 8 && rp->subbitbuf > 0) {
-      fprintf(stderr, "---bitcount = %d (n = %d)\n[%s]\n",
-                rp->bitcount, n,
-              bitstring(rp->bitbuf, 16));
-      fprintf(stderr, "[%16s]\n",
-              bitstring(rp->subbitbuf, 8));
-    }
-#endif
     rp->bitcount -= n;
     rp->bitbuf |= (rp->subbitbuf >> rp->bitcount) & ((1 << n)-1);
 }