diff options
author | Marcel Raad <raad@teamviewer.com> | 2017-05-08 19:59:46 +0200 |
---|---|---|
committer | Marcel Raad <raad@teamviewer.com> | 2017-05-08 19:59:46 +0200 |
commit | 141ed8ca09e0650879d2333ecce19ff1b339b895 (patch) | |
tree | 1bea5ea4850129bb17a03203023d4e747ca6399e /tests/libtest/lib578.c | |
parent | 78007305203140162f567fd611182cfc41ac51dd (diff) | |
download | curl-141ed8ca09e0650879d2333ecce19ff1b339b895.tar.gz |
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.
Diffstat (limited to 'tests/libtest/lib578.c')
-rw-r--r-- | tests/libtest/lib578.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib578.c b/tests/libtest/lib578.c index 9603b58d7..41b23db34 100644 --- a/tests/libtest/lib578.c +++ b/tests/libtest/lib578.c @@ -77,7 +77,7 @@ int test(char *URL) #endif /* Set the expected POST size */ - test_setopt(curl, CURLOPT_POSTFIELDSIZE, data_size); + test_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)data_size); test_setopt(curl, CURLOPT_POSTFIELDS, data); /* we want to use our own progress function */ |