mirror of
https://github.com/curl/curl.git
synced 2026-08-06 17:26:15 +03:00
Fixed compiler warning re: unused variable `bigsize'
This commit is contained in:
parent
fbb5518ab6
commit
65ba6e3337
1 changed files with 3 additions and 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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue