diff options
author | Yang Tse <yangsita@gmail.com> | 2013-07-22 21:07:06 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2013-07-22 21:40:45 +0200 |
commit | 0f4ba89ffdf93ed7883b4a1f53f1c383df4fcfad (patch) | |
tree | 971bb42e09b3398c94fc8fcdcc5eebdb1e9444f3 /tests/libtest/lib1510.c | |
parent | edeb1ae65f903b216363dd4200ce33418dfd4eb4 (diff) | |
download | curl-0f4ba89ffdf93ed7883b4a1f53f1c383df4fcfad.tar.gz |
libtest: fix data type of some *_setopt() 'long' arguments
Diffstat (limited to 'tests/libtest/lib1510.c')
-rw-r--r-- | tests/libtest/lib1510.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib1510.c b/tests/libtest/lib1510.c index fb57d6462..1bcf2165a 100644 --- a/tests/libtest/lib1510.c +++ b/tests/libtest/lib1510.c @@ -63,7 +63,7 @@ int test(char *URL) easy_setopt(curl, CURLOPT_RESOLVE, slist); - easy_setopt(curl, CURLOPT_MAXCONNECTS, 3); + easy_setopt(curl, CURLOPT_MAXCONNECTS, 3L); /* get NUM_HANDLES easy handles */ for(i=0; i < NUM_URLS; i++) { |