]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
example: use correct type (long) for CURLOPT_FOLLOWLOCATION
authorDimitrios Siganos <dimitris@siganos.org>
Wed, 2 Jul 2014 09:49:08 +0000 (11:49 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 3 Jul 2014 20:47:28 +0000 (22:47 +0200)
docs/examples/href_extractor.c

index 4b307a29e40dce87aaf4823d6bc5f575b5288155..c11325d2e90a163de8a2cad5984a984a2f73e883 100644 (file)
@@ -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);