diff options
Diffstat (limited to 'test/example.c')
-rw-r--r-- | test/example.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/example.c b/test/example.c index cb9e87a..8309178 100644 --- a/test/example.c +++ b/test/example.c @@ -451,9 +451,8 @@ void test_sync(unsigned char *compr, size_t comprLen, unsigned char *uncompr, si CHECK_ERR(err, "inflateSync"); err = PREFIX(inflate)(&d_stream, Z_FINISH); - if (err != Z_DATA_ERROR) { - fprintf(stderr, "inflate should report DATA_ERROR\n"); - /* Because of incorrect adler32 */ + if (err != Z_STREAM_END) { + fprintf(stderr, "inflate should report Z_STREAM_END\n"); exit(1); } err = PREFIX(inflateEnd)(&d_stream); |