diff options
author | Mika Lindqvist <postmaster@raasu.org> | 2015-05-19 01:35:49 +0300 |
---|---|---|
committer | Mika Lindqvist <postmaster@raasu.org> | 2015-05-22 23:17:30 +0300 |
commit | d6523bc5d50f05805821efd05db3a6a78b9ccca7 (patch) | |
tree | 51034b25b8a48932ab7d78e01bb16d862680a43b /infback.c | |
parent | 10a800267df8bddcdf36758f6e8ec6f7020da59d (diff) |
Replace (void *)0 with NULL.
Diffstat (limited to 'infback.c')
-rw-r--r-- | infback.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |