Skip to content
Snippets Groups Projects
Commit 6c89e1b3 authored by Yang Tse's avatar Yang Tse
Browse files

fix compiler warning: enumerated type mixed with another type

parent 09777a4f
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ static curlioerr ioctlcallback(CURL *handle,
int test(char *URL)
{
CURLcode res;
int res;
CURL *curl;
int counter=0;
CURLM *m;
......@@ -142,6 +142,6 @@ int test(char *URL)
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