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

typecast the type to an int on return

parent 134cb661
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,6 @@ int test(char *URL)
curl_easy_setopt(curl, CURLOPT_HEADER, TRUE);
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
return res;
return (int)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