summaryrefslogtreecommitdiffstats
path: root/src/download.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/download.c')
-rw-r--r--src/download.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/download.c b/src/download.c
index e329f6b..717f2dc 100644
--- a/src/download.c
+++ b/src/download.c
@@ -93,7 +93,7 @@ int download_progress(void *clientp, double dltotal, double dlnow, double ultota
if (p < 100.0f) {
if ((int)p > lastprogress) {
- print_progress_bar(p);
+ info("downloading: %d%%\n", (int)p);
lastprogress = (int)p;
}
}