diff options
Diffstat (limited to 'trees.c')
-rw-r--r-- | trees.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -870,7 +870,7 @@ void ZLIB_INTERNAL _tr_stored_block(s, buf, stored_len, last) | |||
870 | bi_windup(s); /* align on byte boundary */ | 870 | bi_windup(s); /* align on byte boundary */ |
871 | put_short(s, (ush)stored_len); | 871 | put_short(s, (ush)stored_len); |
872 | put_short(s, (ush)~stored_len); | 872 | put_short(s, (ush)~stored_len); |
873 | zmemcpy(s->pending_buf + s->pending, buf, stored_len); | 873 | zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len); |
874 | s->pending += stored_len; | 874 | s->pending += stored_len; |
875 | #ifdef ZLIB_DEBUG | 875 | #ifdef ZLIB_DEBUG |
876 | s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L; | 876 | s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L; |