summaryrefslogtreecommitdiff
path: root/inflate.c
diff options
context:
space:
mode:
authorNathan Moinvaziri <nathan@nathanm.com>2021-06-13 15:16:20 -0700
committerHans Kristian Rosbach <hk-git@circlestorm.org>2021-06-21 11:19:21 +0200
commitf0a801edc93c2f58e705e1cf76011560727084d2 (patch)
tree9c2b5a30a8125b64b078e09febb8a697c8b383f4 /inflate.c
parent89992dfbf11c3665f9c7808237a9ba865beb82f2 (diff)
Added Z_UNUSED define for ignore unused variables.
Diffstat (limited to 'inflate.c')
-rw-r--r--inflate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/inflate.c b/inflate.c
index 5c30816..6285823 100644
--- a/inflate.c
+++ b/inflate.c
@@ -1289,7 +1289,7 @@ int32_t Z_EXPORT PREFIX(inflateUndermine)(PREFIX3(stream) *strm, int32_t subvert
state->sane = !subvert;
return Z_OK;
#else
- (void)subvert;
+ Z_UNUSED(subvert);
state->sane = 1;
return Z_DATA_ERROR;
#endif