summaryrefslogtreecommitdiffstats
path: root/lib/libz/test/example.c
diff options
context:
space:
mode:
authordelphij <delphij@FreeBSD.org>2013-05-05 06:20:49 +0000
committerdelphij <delphij@FreeBSD.org>2013-05-05 06:20:49 +0000
commit3aa8c3c45d1e3a051472f5709b73c3f14dead8c9 (patch)
treebacb6680be330336d733ff4c78a4729e1c6cf08f /lib/libz/test/example.c
parent1136bac82ba442fbcd3270b6cf0a9a87260cd30b (diff)
downloadFreeBSD-src-3aa8c3c45d1e3a051472f5709b73c3f14dead8c9.zip
FreeBSD-src-3aa8c3c45d1e3a051472f5709b73c3f14dead8c9.tar.gz
MFV: Update zlib to 1.2.8.
MFC after: 1 month
Diffstat (limited to 'lib/libz/test/example.c')
-rw-r--r--lib/libz/test/example.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libz/test/example.c b/lib/libz/test/example.c
index f515a48..138a699 100644
--- a/lib/libz/test/example.c
+++ b/lib/libz/test/example.c
@@ -26,7 +26,7 @@
} \
}
-const char hello[] = "hello, hello!";
+z_const char hello[] = "hello, hello!";
/* "hello world" would be more standard, but the repeated "hello"
* stresses the compression code better, sorry...
*/
@@ -212,7 +212,7 @@ void test_deflate(compr, comprLen)
err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION);
CHECK_ERR(err, "deflateInit");
- c_stream.next_in = (Bytef*)hello;
+ c_stream.next_in = (z_const unsigned char *)hello;
c_stream.next_out = compr;
while (c_stream.total_in != len && c_stream.total_out < comprLen) {
@@ -387,7 +387,7 @@ void test_flush(compr, comprLen)
err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION);
CHECK_ERR(err, "deflateInit");
- c_stream.next_in = (Bytef*)hello;
+ c_stream.next_in = (z_const unsigned char *)hello;
c_stream.next_out = compr;
c_stream.avail_in = 3;
c_stream.avail_out = (uInt)*comprLen;
@@ -476,7 +476,7 @@ void test_dict_deflate(compr, comprLen)
c_stream.next_out = compr;
c_stream.avail_out = (uInt)comprLen;
- c_stream.next_in = (Bytef*)hello;
+ c_stream.next_in = (z_const unsigned char *)hello;
c_stream.avail_in = (uInt)strlen(hello)+1;
err = deflate(&c_stream, Z_FINISH);
OpenPOWER on IntegriCloud