diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-01-01 19:10:32 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-01-01 19:10:32 (GMT) |
commit | d2cdeda593457c08bfa561d317374933f9fcf925 (patch) | |
tree | 77c302923d88e96f0b6fbb399719fc25530be29c /compat/zlib/test/example.c | |
parent | a04ce08575e6013ffee3376c7d045a6709dee314 (diff) | |
download | tcl-d2cdeda593457c08bfa561d317374933f9fcf925.zip tcl-d2cdeda593457c08bfa561d317374933f9fcf925.tar.gz tcl-d2cdeda593457c08bfa561d317374933f9fcf925.tar.bz2 |
Update zlib to version 1.2.9. Dll's and *.lib files not updated yet
Diffstat (limited to 'compat/zlib/test/example.c')
-rw-r--r-- | compat/zlib/test/example.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/compat/zlib/test/example.c b/compat/zlib/test/example.c index 138a699..eee17ce 100644 --- a/compat/zlib/test/example.c +++ b/compat/zlib/test/example.c @@ -1,5 +1,5 @@ /* example.c -- usage example of the zlib compression library - * Copyright (C) 1995-2006, 2011 Jean-loup Gailly. + * Copyright (C) 1995-2006, 2011, 2016 Jean-loup Gailly * For conditions of distribution and use, see copyright notice in zlib.h */ @@ -26,13 +26,13 @@ } \ } -z_const char hello[] = "hello, hello!"; +static z_const char hello[] = "hello, hello!"; /* "hello world" would be more standard, but the repeated "hello" * stresses the compression code better, sorry... */ -const char dictionary[] = "hello"; -uLong dictId; /* Adler32 value of the dictionary */ +static const char dictionary[] = "hello"; +static uLong dictId; /* Adler32 value of the dictionary */ void test_deflate OF((Byte *compr, uLong comprLen)); void test_inflate OF((Byte *compr, uLong comprLen, @@ -59,13 +59,13 @@ void *myalloc(q, n, m) void *q; unsigned n, m; { - q = Z_NULL; + (void)q; return calloc(n, m); } void myfree(void *q, void *p) { - q = Z_NULL; + (void)q; free(p); } @@ -432,7 +432,7 @@ void test_sync(compr, comprLen, uncompr, uncomprLen) d_stream.next_out = uncompr; d_stream.avail_out = (uInt)uncomprLen; - inflate(&d_stream, Z_NO_FLUSH); + err = inflate(&d_stream, Z_NO_FLUSH); CHECK_ERR(err, "inflate"); d_stream.avail_in = (uInt)comprLen-2; /* read all compressed data */ @@ -573,7 +573,8 @@ int main(argc, argv) } #ifdef Z_SOLO - argc = strlen(argv[0]); + (void)argc; + (void)argv; #else test_compress(compr, comprLen, uncompr, uncomprLen); |