commit c04fb9d4263385c7f0b11fa9afa0d4181da92cd0
parent 72b1990a0c442377b94a5c4ac096d67a19d4927a
Author: Christian Grothoff <christian@grothoff.org>
Date: Thu, 19 Aug 2010 12:36:15 +0000
fix
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/testzzuf/daemontest_large_put.c b/src/testzzuf/daemontest_large_put.c
@@ -256,11 +256,11 @@ testExternalPut ()
cbc.size = 2048;
cbc.pos = 0;
multi = NULL;
- d = MHD_start_daemon (MHD_NO_FLAG /* | MHD_USE_DEBUG */ ,
+ d = MHD_start_daemon (MHD_NO_FLAG /* | MHD_USE_DEBUG */,
11080,
NULL, NULL, &ahc_echo, &done_flag,
MHD_OPTION_CONNECTION_MEMORY_LIMIT,
- PUT_SIZE * 4, MHD_OPTION_END);
+ (size_t) (PUT_SIZE * 4), MHD_OPTION_END);
if (d == NULL)
return 256;
multi = curl_multi_init ();