diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-02-03 12:16:22 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-02-03 12:16:22 +0000 |
commit | c1daf6c0cd6c8a3f785ffa5cbdd228eb32fbf472 (patch) | |
tree | 0c0e1989e175ed24420384ae66986b4a1ecea2ad /src/tool_main.c | |
parent | cf80b85b6636a110848e4fd666e28102b652b96a (diff) | |
download | curl-c1daf6c0cd6c8a3f785ffa5cbdd228eb32fbf472.tar.gz |
tool_main: Fixed compilation warning from commit 0104678c79
no previous prototype for function 'memory_tracking_init'
Diffstat (limited to 'src/tool_main.c')
-rw-r--r-- | src/tool_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool_main.c b/src/tool_main.c index e0766e9b7..5682bd78e 100644 --- a/src/tool_main.c +++ b/src/tool_main.c @@ -84,7 +84,7 @@ static void main_checkfds(void) } #ifdef CURLDEBUG -void memory_tracking_init(void) +static void memory_tracking_init(void) { char *env; /* if CURL_MEMDEBUG is set, this starts memory tracking message logging */ |