diff options
Diffstat (limited to 'src/clone.c')
-rw-r--r-- | src/clone.c | 4 |
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); } |