From 854679a733d0f43d0b081226af10e7405234935a Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Tue, 7 Jan 2014 16:12:08 +0100 Subject: download: make download_progress function static --- src/download.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/download.c b/src/download.c index e8a315d..19af28e 100644 --- a/src/download.c +++ b/src/download.c @@ -91,7 +91,7 @@ int download_to_buffer(const char* url, char** buf, uint32_t* length) static int lastprogress = 0; -int download_progress(void *clientp, double dltotal, double dlnow, double ultotal, double ulnow) +static int download_progress(void *clientp, double dltotal, double dlnow, double ultotal, double ulnow) { double p = (dlnow / dltotal) * 100; -- cgit v1.1-32-gdbae