mirror of
https://github.com/curl/curl.git
synced 2025-09-30 07:56:57 +03:00
fix compiler warning: external declaration in primary source file
This commit is contained in:
parent
89367d47a8
commit
61c0bdb09c
|
@ -214,7 +214,7 @@ static const char * const statename[]={
|
||||||
"COMPLETED",
|
"COMPLETED",
|
||||||
};
|
};
|
||||||
|
|
||||||
void curl_multi_dump(CURLM *multi_handle);
|
static void curl_multi_dump(CURLM *multi_handle);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* always use this function to change state, to make debugging easier */
|
/* always use this function to change state, to make debugging easier */
|
||||||
|
@ -2232,7 +2232,7 @@ static void add_closure(struct Curl_multi *multi,
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CURLDEBUG
|
#ifdef CURLDEBUG
|
||||||
void curl_multi_dump(CURLM *multi_handle)
|
static void curl_multi_dump(CURLM *multi_handle)
|
||||||
{
|
{
|
||||||
struct Curl_multi *multi=(struct Curl_multi *)multi_handle;
|
struct Curl_multi *multi=(struct Curl_multi *)multi_handle;
|
||||||
struct Curl_one_easy *easy;
|
struct Curl_one_easy *easy;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user