Commit 65ba6e33 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Fixed compiler warning re: unused variable `bigsize'

parent fbb5518a
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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: