projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
afcad1f
)
Make dump_nested() quiet.
author
Ben Pfaff
<blp@cs.stanford.edu>
Fri, 7 Nov 2014 18:29:02 +0000
(10:29 -0800)
committer
Ben Pfaff
<blp@cs.stanford.edu>
Fri, 7 Nov 2014 18:29:02 +0000
(10:29 -0800)
dump.c
patch
|
blob
|
history
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;
}