summaryrefslogtreecommitdiff
path: root/infback.c
diff options
context:
space:
mode:
authorMika Lindqvist <postmaster@raasu.org>2015-05-19 01:35:49 +0300
committerMika Lindqvist <postmaster@raasu.org>2015-05-22 23:17:30 +0300
commitd6523bc5d50f05805821efd05db3a6a78b9ccca7 (patch)
tree51034b25b8a48932ab7d78e01bb16d862680a43b /infback.c
parent10a800267df8bddcdf36758f6e8ec6f7020da59d (diff)
Replace (void *)0 with NULL.
Diffstat (limited to 'infback.c')
-rw-r--r--infback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/infback.c b/infback.c
index 08e77fa..ead697b 100644
--- a/infback.c
+++ b/infback.c
@@ -39,7 +39,7 @@ int ZEXPORT inflateBackInit_(z_stream *strm, int windowBits, unsigned char *wind
strm->msg = Z_NULL; /* in case we return an error */
if (strm->zalloc == (alloc_func)0) {
strm->zalloc = zcalloc;
- strm->opaque = (void *)0;
+ strm->opaque = NULL;
}
if (strm->zfree == (free_func)0)
strm->zfree = zcfree;