From 141ed8ca09e0650879d2333ecce19ff1b339b895 Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Mon, 8 May 2017 19:59:46 +0200 Subject: libtest: fix MinGW-w64 warnings long is 32 bits while size_t is 64 bits on MinGW-w64, so typecheck-gcc.h complains when using size_t for a long option. Also, curl_socket_t is unsigned long long rather than int. --- tests/libtest/lib1526.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/libtest/lib1526.c') diff --git a/tests/libtest/lib1526.c b/tests/libtest/lib1526.c index b2d2a4118..704ae497d 100644 --- a/tests/libtest/lib1526.c +++ b/tests/libtest/lib1526.c @@ -85,7 +85,7 @@ int test(char *URL) test_setopt(curl, CURLOPT_WRITEFUNCTION, fwrite); test_setopt(curl, CURLOPT_READFUNCTION, read_callback); test_setopt(curl, CURLOPT_HTTPPROXYTUNNEL, 1L); - test_setopt(curl, CURLOPT_INFILESIZE, strlen(data)); + test_setopt(curl, CURLOPT_INFILESIZE, (long)strlen(data)); res = curl_easy_perform(curl); -- cgit v1.2.3