diff options
author | Yang Tse <yangsita@gmail.com> | 2008-09-13 03:49:33 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-09-13 03:49:33 +0000 |
commit | 61c0bdb09c8e844117d816d0b16185b58f360ebb (patch) | |
tree | 596e49ba541f988e50638148b60eb70a377972a2 | |
parent | 89367d47a87e8bead28e229d6822718b987fac95 (diff) |
fix compiler warning: external declaration in primary source file
-rw-r--r-- | lib/multi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/multi.c b/lib/multi.c index af355b6c7..9d8a8f990 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -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; |