summaryrefslogtreecommitdiff
path: root/tests/network
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2019-02-21 10:33:30 +0000
committerEdward Thomson <ethomson@edwardthomson.com>2019-02-22 11:25:14 +0000
commita1ef995dc03379fb1f5151b5d98d16644218c95e (patch)
treef209958f5f27dfbe3dc2da296c801563a348cce4 /tests/network
parent975d6722a5c203427ab63789d329c00b76461225 (diff)
downloadlibgit2-a1ef995dc03379fb1f5151b5d98d16644218c95e.tar.gz
indexer: use git_indexer_progress throughout
Update internal usage of `git_transfer_progress` to `git_indexer_progreses`.
Diffstat (limited to 'tests/network')
-rw-r--r--tests/network/fetchlocal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/network/fetchlocal.c b/tests/network/fetchlocal.c
index bedbcf9e8..6bc28265b 100644
--- a/tests/network/fetchlocal.c
+++ b/tests/network/fetchlocal.c
@@ -8,7 +8,7 @@ static const char* tagger_name = "Vicent Marti";
static const char* tagger_email = "vicent@github.com";
static const char* tagger_message = "This is my tag.\n\nThere are many tags, but this one is mine\n";
-static int transfer_cb(const git_transfer_progress *stats, void *payload)
+static int transfer_cb(const git_indexer_progress *stats, void *payload)
{
int *callcount = (int*)payload;
GIT_UNUSED(stats);