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/lib1506.c | |
parent | edeb1ae65f903b216363dd4200ce33418dfd4eb4 (diff) |
libtest: fix data type of some *_setopt() 'long' arguments
Diffstat (limited to 'tests/libtest/lib1506.c')
-rw-r--r-- | tests/libtest/lib1506.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib1506.c b/tests/libtest/lib1506.c index e524beb75..008a9cae1 100644 --- a/tests/libtest/lib1506.c +++ b/tests/libtest/lib1506.c @@ -60,7 +60,7 @@ int test(char *URL) multi_init(m); - multi_setopt(m, CURLMOPT_MAXCONNECTS, 3); + multi_setopt(m, CURLMOPT_MAXCONNECTS, 3L); /* get NUM_HANDLES easy handles */ for(i=0; i < NUM_HANDLES; i++) { |