Make dump_nested() quiet.
authorBen Pfaff <blp@cs.stanford.edu>
Fri, 7 Nov 2014 18:29:02 +0000 (10:29 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Fri, 7 Nov 2014 18:29:02 +0000 (10:29 -0800)
dump.c

diff --git a/dump.c b/dump.c
index f87c78b8ff74a687c916e6ca940bcb7d07c87286..51f97dc21a4bbbd06db98faef54e41d0bf0e5dbe 100644 (file)
--- a/dump.c
+++ b/dump.c
@@ -211,9 +211,11 @@ static void
 dump_nested(void)
 {
   int subn = get_u32 ();
+#if 0
   fprintf (stderr, "nested %d bytes: ", subn);
   dump_raw(stderr, pos, pos + subn, "");
   putc('\n', stderr);
+#endif
   pos += subn;
 }