summaryrefslogtreecommitdiff
path: root/trees.c
diff options
context:
space:
mode:
Diffstat (limited to 'trees.c')
-rw-r--r--trees.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/trees.c b/trees.c
index 5f6d4af..bb09554 100644
--- a/trees.c
+++ b/trees.c
@@ -1107,7 +1107,8 @@ local void compress_block(s, ltree, dtree)
1107 } /* literal or match pair ? */ 1107 } /* literal or match pair ? */
1108 1108
1109 /* Check that the overlay between pending_buf and d_buf+l_buf is ok: */ 1109 /* Check that the overlay between pending_buf and d_buf+l_buf is ok: */
1110 Assert(s->pending < s->lit_bufsize + 2*lx, "pendingBuf overflow"); 1110 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
1111 "pendingBuf overflow");
1111 1112
1112 } while (lx < s->last_lit); 1113 } while (lx < s->last_lit);
1113 1114