From a1ef995dc03379fb1f5151b5d98d16644218c95e Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Thu, 21 Feb 2019 10:33:30 +0000 Subject: indexer: use git_indexer_progress throughout Update internal usage of `git_transfer_progress` to `git_indexer_progreses`. --- fuzzers/packfile_fuzzer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fuzzers') diff --git a/fuzzers/packfile_fuzzer.c b/fuzzers/packfile_fuzzer.c index a448233cb..f5e6718ed 100644 --- a/fuzzers/packfile_fuzzer.c +++ b/fuzzers/packfile_fuzzer.c @@ -55,7 +55,7 @@ int LLVMFuzzerInitialize(int *argc, char ***argv) int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { git_indexer *indexer = NULL; - git_transfer_progress stats = {0, 0}; + git_indexer_progress stats = {0, 0}; bool append_hash = false; git_oid id; char hash[GIT_OID_HEXSZ + 1] = {0}; -- cgit v1.2.1