diff options
author | Nathan Moinvaziri <nathan@solidstatenetworks.com> | 2020-06-09 22:58:18 -0700 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2020-06-27 16:24:14 +0200 |
commit | b5bc4983156f479dfd139d534dc18c385e077ffb (patch) | |
tree | a0ea978453ac3935b935c477ff8a2f25304df4b8 /deflate_slow.c | |
parent | 0b1bc95c139f477bc381f874cd7edb5aa006b58e (diff) |
Don't set bflush to zero since it is assigned before used.
Diffstat (limited to 'deflate_slow.c')
-rw-r--r-- | deflate_slow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deflate_slow.c b/deflate_slow.c index 75f4a8b..b526be4 100644 --- a/deflate_slow.c +++ b/deflate_slow.c @@ -16,7 +16,7 @@ */ ZLIB_INTERNAL block_state deflate_slow(deflate_state *s, int flush) { Pos hash_head; /* head of hash chain */ - int bflush = 0; /* set if current block must be flushed */ + int bflush; /* set if current block must be flushed */ /* Process the input block. */ for (;;) { |