aboutsummaryrefslogtreecommitdiff
path: root/src/cli/updater.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/updater.c')
-rw-r--r--src/cli/updater.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/updater.c b/src/cli/updater.c
index 8b0cc03..ae86aa1 100644
--- a/src/cli/updater.c
+++ b/src/cli/updater.c
@@ -34,11 +34,11 @@ static void* thread_download(void* pinfo)
struct file_info* file = &rev->files[i];
if (file->type == TYPE_WRITE)
{
- fprintf(stderr, "\rChecking %lu/%lu (%s)", i+1, rev->file_count, file->object);
+ fprintf(stderr, "\rChecking %zu/%zu (%s)", i+1, rev->file_count, file->object);
if (verifyFileHash(of_dir, file))
{
- fprintf(stderr, "\rDownloading %lu/%lu (%s)", i+1, rev->file_count, file->object);
+ fprintf(stderr, "\rDownloading %zu/%zu (%s)", i+1, rev->file_count, file->object);
downloadObject(of_dir, remote, file);
}
}