diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2007-10-16 18:09:57 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2007-10-16 18:09:57 +0000 |
commit | 65ba6e3337d5f328c614a9e6b8e15b8d74d9b5e9 (patch) | |
tree | 64c9a462fe3b6a4336560789e5a67d299f7789eb /lib | |
parent | fbb5518ab6f4dc6737d5c7ccb325cbdb0830cd08 (diff) |
Fixed compiler warning re: unused variable `bigsize'
Diffstat (limited to 'lib')
-rw-r--r-- | lib/url.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -771,8 +771,10 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, va_list param) { char *argptr; - curl_off_t bigsize; CURLcode result = CURLE_OK; +#ifndef CURL_DISABLE_HTTP + curl_off_t bigsize; +#endif switch(option) { case CURLOPT_DNS_CACHE_TIMEOUT: |