fix compiler warning: external declaration in primary source file

This commit is contained in:
Yang Tse 2008-09-13 03:49:33 +00:00
parent 89367d47a8
commit 61c0bdb09c

View File

@ -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;