mirror of
https://github.com/curl/curl.git
synced 2026-05-01 11:57:50 +03:00
typecast the type to an int on return
This commit is contained in:
parent
134cb66129
commit
fa8ecd3d53
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue