Commit fa8ecd3d authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

typecast the type to an int on return

parent 134cb661
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}