This commit is contained in:
twinaphex 2018-01-07 14:52:26 +01:00
parent 8d7ea32e0d
commit 5ca618c8d6

5
deps/libz/trees.c vendored
View File

@ -159,14 +159,9 @@ static void copy_block (deflate_state *s, charf *buf, unsigned len,
static void gen_trees_header (void);
#endif
#ifndef DEBUG
# define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
/* Send a code of the given tree. c and tree must not have side effects */
#else /* DEBUG */
# define send_code(s, c, tree) { send_bits(s, tree[c].Code, tree[c].Len); }
#endif
/* ===========================================================================
* Output a short LSB first on the stream.
* IN assertion: there is enough room in pendingBuf.