summaryrefslogtreecommitdiff
path: root/deflate.c
diff options
context:
space:
mode:
authorNathan Moinvaziri <nathan@nathanm.com>2020-06-02 09:24:50 -0700
committerHans Kristian Rosbach <hk-github@circlestorm.org>2020-06-08 21:16:31 +0200
commitfeaa6b7993eaff361f663deff255881e7e2197e1 (patch)
tree96e0dae169c84643c277338e6c39ec868017a144 /deflate.c
parent36e0e0bdf0c71c760452c48104d4e10ca3b34b72 (diff)
Move Tracev flush statement into flush_pending.
Diffstat (limited to 'deflate.c')
-rw-r--r--deflate.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/deflate.c b/deflate.c
index ea9bd05..38a4176 100644
--- a/deflate.c
+++ b/deflate.c
@@ -754,6 +754,7 @@ ZLIB_INTERNAL void flush_pending(PREFIX3(stream) *strm) {
if (len == 0)
return;
+ Tracev((stderr, "[FLUSH]"));
memcpy(strm->next_out, s->pending_out, len);
strm->next_out += len;
s->pending_out += len;