Commit 6c89e1b3 authored by Yang Tse's avatar Yang Tse
Browse files

fix compiler warning: enumerated type mixed with another type

parent 09777a4f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
}