Commit 09aa4cf2 authored by Yang Tse's avatar Yang Tse
Browse files

fix compiler warning: external declaration in primary source file

parent 61c0bdb0
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -3757,11 +3757,11 @@ output_expected(const char* url, const char* uploadfile)

static struct curl_slist *easycode;

CURLcode _my_setopt(CURL *curl, struct Configurable *config, const char *name,
                    CURLoption tag, ...);
static CURLcode _my_setopt(CURL *curl, struct Configurable *config,
                           const char *name, CURLoption tag, ...);

CURLcode _my_setopt(CURL *curl, struct Configurable *config, const char *name,
                    CURLoption tag, ...)
static CURLcode _my_setopt(CURL *curl, struct Configurable *config,
                           const char *name, CURLoption tag, ...)
{
  va_list arg;
  CURLcode ret;