summaryrefslogtreecommitdiff
path: root/docs/examples/debug.c
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2008-05-22 21:20:07 +0000
committerDan Fandrich <dan@coneharvesters.com>2008-05-22 21:20:07 +0000
commite664cd5826d43930fcc5b5dbaedbec94af33184b (patch)
tree7cca8fe1a4d1649d4d40ed7dcd4fc64486dedf00 /docs/examples/debug.c
parentb8abeab6d3729ce4c9cc3eccb69e2bd3be2b58d3 (diff)
downloadgnurl-e664cd5826d43930fcc5b5dbaedbec94af33184b.tar.gz
gnurl-e664cd5826d43930fcc5b5dbaedbec94af33184b.tar.bz2
gnurl-e664cd5826d43930fcc5b5dbaedbec94af33184b.zip
Fixed a surprising number of example programs that were passing int arguments
to curl_easy_setopt instead of long.
Diffstat (limited to 'docs/examples/debug.c')
-rw-r--r--docs/examples/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/debug.c b/docs/examples/debug.c
index 6f7a6383a..543a565eb 100644
--- a/docs/examples/debug.c
+++ b/docs/examples/debug.c
@@ -116,7 +116,7 @@ int main(void)
curl_easy_setopt(curl, CURLOPT_DEBUGDATA, &config);
/* the DEBUGFUNCTION has no effect until we enable VERBOSE */
- curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
+ curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
curl_easy_setopt(curl, CURLOPT_URL, "curl.haxx.se");
res = curl_easy_perform(curl);