diff options
author | Mika Lindqvist <postmaster@raasu.org> | 2016-04-25 22:59:59 +0300 |
---|---|---|
committer | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2017-01-31 10:53:22 +0100 |
commit | 602531cf3de544e7b1e2db8ce8f05e3ebc355ca2 (patch) | |
tree | fd5e1c39f2b23257f6f55a0f8b0963a5f99eaad8 /deflate_p.h | |
parent | 806e48855fb41fa6797dd03eb8c99ab1abe2313a (diff) |
Replace Z_NULL with NULL. Fix incorrect uses of NULL/Z_NULL.
Diffstat (limited to 'deflate_p.h')
-rw-r--r-- | deflate_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deflate_p.h b/deflate_p.h index 8965980..67dc6eb 100644 --- a/deflate_p.h +++ b/deflate_p.h @@ -66,7 +66,7 @@ static inline Pos insert_string(deflate_state *const s, const Pos str, uInt coun #define FLUSH_BLOCK_ONLY(s, last) { \ _tr_flush_block(s, (s->block_start >= 0L ? \ (char *)&s->window[(unsigned)s->block_start] : \ - (char *)Z_NULL), \ + NULL), \ (ulg)((long)s->strstart - s->block_start), \ (last)); \ s->block_start = s->strstart; \ |