Skip to content
Snippets Groups Projects
Commit 79296007 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

stricter type use to please compilers

parent a05ea124
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@
int test(char *URL)
{
CURLMcode res = CURLE_OK;
int res = 0;
CURL *curl;
FILE *hd_src ;
int hd ;
......@@ -73,7 +73,7 @@ int test(char *URL)
m = curl_multi_init();
res = curl_multi_add_handle(m, curl);
res = (int)curl_multi_add_handle(m, curl);
while(!done) {
fd_set rd, wr, exc;
......@@ -84,7 +84,7 @@ int test(char *URL)
interval.tv_usec = 0;
while (res == CURLM_CALL_MULTI_PERFORM) {
res = curl_multi_perform(m, &running);
res = (int)curl_multi_perform(m, &running);
if (running <= 0) {
done = TRUE;
break;
......@@ -125,5 +125,5 @@ int test(char *URL)
fclose(hd_src); /* close the local file */
curl_global_cleanup();
return (int)res;
return res;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment