* tests/test-gzip.c: Fix unused define w/o WITH_ZLIB

This commit is contained in:
Tim Rühsen
2018-03-08 15:39:55 +01:00
parent 12740dfa9f
commit 3431a34d5f

View File

@ -24,7 +24,9 @@
// gzipp'ed content 'x'
#define compressed_body "\x1f\x8b\x08\x08\x48\x5d\x91\x5a\x00\x03\x78\x00\xab\x00\x00\x83\x16\xdc\x8c\x01\x00\x00\x00"
#define uncompressed_body "x"
#ifdef WITH_ZLIB
# define uncompressed_body "x"
#endif
int main(void)
{