fix compiler warning: enumerated type mixed with another type

This commit is contained in:
Yang Tse 2008-04-17 11:59:46 +00:00
parent 09777a4fc2
commit 6c89e1b311
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}