mirror of
https://github.com/curl/curl.git
synced 2026-08-05 13:36:14 +03:00
example: use correct type (long) for CURLOPT_FOLLOWLOCATION
This commit is contained in:
parent
afbd5f978e
commit
22eb00f937
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ int main(int argc, char *argv[])
|
|||
curl_easy_setopt(curl, CURLOPT_URL, argv[1]);
|
||||
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_callback);
|
||||
curl_easy_setopt(curl, CURLOPT_WRITEDATA, hsp);
|
||||
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
|
||||
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
|
||||
|
||||
curl_easy_perform(curl);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue