changeset 1056:3a67e9552c7d

Oops, remove debugging code.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 01 Mar 2015 22:58:55 +0200
parents 2858b56bdbe5
children eb2d14546a0e
files src/dmres.c
diffstat 1 files changed, 0 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/src/dmres.c	Sun Mar 01 22:44:02 2015 +0200
+++ b/src/dmres.c	Sun Mar 01 22:58:55 2015 +0200
@@ -405,21 +405,6 @@
         goto out;
     }
 
-    // XXX TEMP DEBUG
-    size_t n, off;
-    for (off = 0; off < 400;)
-    {
-        for (n = 0; n < 16; n++)
-            printf("%02x ", inBuf[off + n]);
-
-        printf(" | ");
-        for (n = 0; n < 16; n++)
-            printf("%c", isprint(inBuf[off + n]) ? inBuf[off + n] : '.');
-
-        printf("\n");
-        off += n;
-    }
-
     // Initialize decompression structures
     ctx.zbuffer    = inBuf;
     ctx.zbufferEnd = inBuf + node->length;