summaryrefslogtreecommitdiff
path: root/src/clone.c
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2012-10-16 20:33:48 -0700
committerBen Straub <bs@github.com>2012-10-19 19:36:22 -0700
commit183d8bddeb859a27ee688dac53ea26ccc547d05c (patch)
tree5b63f1c9dc0bae1bf42351c2317bee6d479f7af9 /src/clone.c
parent806426565f78ff0ee0ac12e125d59658e3ef34be (diff)
downloadlibgit2-183d8bddeb859a27ee688dac53ea26ccc547d05c.tar.gz
Remove checkout_stats from git_clone
Diffstat (limited to 'src/clone.c')
-rw-r--r--src/clone.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/clone.c b/src/clone.c
index b84cd8dc9..2000de6f3 100644
--- a/src/clone.c
+++ b/src/clone.c
@@ -307,7 +307,6 @@ static int clone_internal(
const char *origin_url,
const char *path,
git_indexer_stats *fetch_stats,
- git_indexer_stats *checkout_stats,
git_checkout_opts *checkout_opts,
bool is_bare)
{
@@ -351,7 +350,6 @@ int git_clone_bare(git_repository **out,
dest_path,
fetch_stats,
NULL,
- NULL,
1);
}
@@ -360,7 +358,6 @@ int git_clone(git_repository **out,
const char *origin_url,
const char *workdir_path,
git_indexer_stats *fetch_stats,
- git_indexer_stats *checkout_stats,
git_checkout_opts *checkout_opts)
{
assert(out && origin_url && workdir_path);
@@ -370,7 +367,6 @@ int git_clone(git_repository **out,
origin_url,
workdir_path,
fetch_stats,
- checkout_stats,
checkout_opts,
0);
}