patch-2.3.36 linux/fs/cramfs/inflate/inffast.c

Next file: linux/fs/cramfs/inflate/inflate.c
Previous file: linux/fs/cramfs/inflate/infcodes.c
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.3.35/linux/fs/cramfs/inflate/inffast.c linux/fs/cramfs/inflate/inffast.c
@@ -60,9 +60,6 @@
     if ((e = (t = tl + ((uInt)b & ml))->exop) == 0)
     {
       DUMPBITS(t->bits)
-      Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
-                "inflate:         * literal '%c'\n" :
-                "inflate:         * literal 0x%02x\n", t->base));
       *q++ = (Byte)t->base;
       m--;
       continue;
@@ -75,7 +72,6 @@
         e &= 15;
         c = t->base + ((uInt)b & inflate_mask[e]);
         DUMPBITS(e)
-        Tracevv((stderr, "inflate:         * length %u\n", c));
 
         /* decode distance base of block to copy */
         GRABBITS(15);           /* max bits for distance code */
@@ -89,7 +85,6 @@
             GRABBITS(e)         /* get extra bits (up to 13) */
             d = t->base + ((uInt)b & inflate_mask[e]);
             DUMPBITS(e)
-            Tracevv((stderr, "inflate:         * distance %u\n", d));
 
             /* do the copy */
             m -= c;
@@ -138,9 +133,6 @@
         if ((e = (t += ((uInt)b & inflate_mask[e]))->exop) == 0)
         {
           DUMPBITS(t->bits)
-          Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
-                    "inflate:         * literal '%c'\n" :
-                    "inflate:         * literal 0x%02x\n", t->base));
           *q++ = (Byte)t->base;
           m--;
           break;
@@ -148,7 +140,6 @@
       }
       else if (e & 32)
       {
-        Tracevv((stderr, "inflate:         * end of block\n"));
         UNGRAB
         UPDATE
         return Z_STREAM_END;

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)