aboutsummaryrefslogtreecommitdiff
path: root/src/testzzuf
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-09-21 13:13:05 +0000
committerChristian Grothoff <christian@grothoff.org>2010-09-21 13:13:05 +0000
commitb4abb360a438af83a786b8f8e2df8b5ed0c865ba (patch)
treeea3f61eba2be499856ddc42cdf36940aeea8e4c6 /src/testzzuf
parentf33a16a615ae2fd55f1fd7ddf8654a82bcca0228 (diff)
downloadlibmicrohttpd-b4abb360a438af83a786b8f8e2df8b5ed0c865ba.tar.gz
libmicrohttpd-b4abb360a438af83a786b8f8e2df8b5ed0c865ba.zip
use size_t
Diffstat (limited to 'src/testzzuf')
-rw-r--r--src/testzzuf/daemontest_get_chunked.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testzzuf/daemontest_get_chunked.c b/src/testzzuf/daemontest_get_chunked.c
index 29ee5028..655f402a 100644
--- a/src/testzzuf/daemontest_get_chunked.c
+++ b/src/testzzuf/daemontest_get_chunked.c
@@ -61,8 +61,8 @@ copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx)
61 * MHD content reader callback that returns 61 * MHD content reader callback that returns
62 * data in chunks. 62 * data in chunks.
63 */ 63 */
64static int 64static ssize_t
65crc (void *cls, uint64_t pos, char *buf, int max) 65crc (void *cls, uint64_t pos, char *buf, size_t max)
66{ 66{
67 struct MHD_Response **responseptr = cls; 67 struct MHD_Response **responseptr = cls;
68 68