mirror of
https://github.com/curl/curl.git
synced 2026-06-05 11:14:15 +03:00
fix compiler warning: external declaration in primary source file
This commit is contained in:
parent
89367d47a8
commit
61c0bdb09c
1 changed files with 2 additions and 2 deletions
|
|
@ -214,7 +214,7 @@ static const char * const statename[]={
|
|||
"COMPLETED",
|
||||
};
|
||||
|
||||
void curl_multi_dump(CURLM *multi_handle);
|
||||
static void curl_multi_dump(CURLM *multi_handle);
|
||||
#endif
|
||||
|
||||
/* 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
|
||||
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_one_easy *easy;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue