diff options
| author | nulltoken <emeric.fermas@gmail.com> | 2012-10-17 15:30:22 +0200 |
|---|---|---|
| committer | Ben Straub <bs@github.com> | 2012-10-19 19:36:22 -0700 |
| commit | 0ae81fc479bf3cf7ed31b3e3b070de7990102f1d (patch) | |
| tree | 822324b25c1617c04d5fde7c2c6f0e28a8fc9c0f /tests-clar/status/worktree.c | |
| parent | 2b7efe03406411dd8fe25bcc15b0783313097692 (diff) | |
| download | libgit2-0ae81fc479bf3cf7ed31b3e3b070de7990102f1d.tar.gz | |
index: remove read_tree() progress indicator
git_index_read_tree() was exposing a parameter to provide the user with
a progress indicator. Unfortunately, due to the recursive nature of the
tree walk, the maximum number of items to process was unknown. Thus,
the indicator was only counting processed entries, without providing
any information how the number of remaining items.
Diffstat (limited to 'tests-clar/status/worktree.c')
| -rw-r--r-- | tests-clar/status/worktree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests-clar/status/worktree.c b/tests-clar/status/worktree.c index 908d34510..4ff315f84 100644 --- a/tests-clar/status/worktree.c +++ b/tests-clar/status/worktree.c @@ -486,7 +486,7 @@ static void fill_index_wth_head_entries(git_repository *repo, git_index *index) cl_git_pass(git_commit_lookup(&commit, repo, &oid)); cl_git_pass(git_commit_tree(&tree, commit)); - cl_git_pass(git_index_read_tree(index, tree, NULL)); + cl_git_pass(git_index_read_tree(index, tree)); cl_git_pass(git_index_write(index)); git_tree_free(tree); |
