mirror of
https://github.com/curl/curl.git
synced 2026-08-24 19:53:46 +03:00
fix compiler warning: defined but not used
This commit is contained in:
parent
09aa4cf2ca
commit
f591ab3ba0
2 changed files with 11 additions and 4 deletions
|
|
@ -213,8 +213,6 @@ static const char * const statename[]={
|
|||
"DONE",
|
||||
"COMPLETED",
|
||||
};
|
||||
|
||||
static void curl_multi_dump(CURLM *multi_handle);
|
||||
#endif
|
||||
|
||||
/* always use this function to change state, to make debugging easier */
|
||||
|
|
@ -2232,7 +2230,7 @@ static void add_closure(struct Curl_multi *multi,
|
|||
}
|
||||
|
||||
#ifdef CURLDEBUG
|
||||
static void curl_multi_dump(CURLM *multi_handle)
|
||||
void Curl_multi_dump(const struct Curl_multi *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