From d31da176eb622fb386a3b657d17921403f95e45c Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Thu, 22 May 2008 21:49:52 +0000 Subject: Made sure to pass longs in to curl_easy_setopt where necessary in the libtest code. --- tests/libtest/lib536.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/libtest/lib536.c') diff --git a/tests/libtest/lib536.c b/tests/libtest/lib536.c index 29e599fcd..9e764a97a 100644 --- a/tests/libtest/lib536.c +++ b/tests/libtest/lib536.c @@ -90,10 +90,10 @@ int test(char *URL) return TEST_ERR_MAJOR_BAD; } - curl_multi_setopt(multi, CURLMOPT_PIPELINING, 1); + curl_multi_setopt(multi, CURLMOPT_PIPELINING, 1L); curl_easy_setopt(easy, CURLOPT_WRITEFUNCTION, fwrite); - curl_easy_setopt(easy, CURLOPT_FAILONERROR, 1); + curl_easy_setopt(easy, CURLOPT_FAILONERROR, 1L); curl_easy_setopt(easy, CURLOPT_URL, URL); if (curl_multi_add_handle(multi, easy) != CURLM_OK) { @@ -107,7 +107,7 @@ int test(char *URL) } curl_easy_reset(easy); - curl_easy_setopt(easy, CURLOPT_FAILONERROR, 1); + curl_easy_setopt(easy, CURLOPT_FAILONERROR, 1L); curl_easy_setopt(easy, CURLOPT_URL, libtest_arg2); if (curl_multi_add_handle(multi, easy) != CURLM_OK) { -- cgit v1.2.3