summaryrefslogtreecommitdiff
path: root/src/clone.c
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2013-09-20 22:49:20 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2013-10-02 06:42:26 +0200
commiteec1c1fe1e9a12b57c4014be25ce4ed390c8e199 (patch)
tree8d033d331a8d705eab805336d37192946c1cc6bc /src/clone.c
parentb9bf5d701dd6dfcfcb41d2655f59f7669cd50ef9 (diff)
downloadlibgit2-eec1c1fe1e9a12b57c4014be25ce4ed390c8e199.tar.gz
clone: const-ify checkout options
The removal of many options which lead to the direct usage of the user's checkout options means we should make sure they remain const.
Diffstat (limited to 'src/clone.c')
-rw-r--r--src/clone.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clone.c b/src/clone.c
index 904be1b57..60525939f 100644
--- a/src/clone.c
+++ b/src/clone.c
@@ -331,7 +331,7 @@ on_error:
static bool should_checkout(
git_repository *repo,
bool is_bare,
- git_checkout_opts *opts)
+ const git_checkout_opts *opts)
{
if (is_bare)
return false;
@@ -345,7 +345,7 @@ static bool should_checkout(
return !git_repository_head_unborn(repo);
}
-int git_clone_into(git_repository *repo, git_remote *remote, git_checkout_opts *co_opts, const char *branch)
+int git_clone_into(git_repository *repo, git_remote *remote, const git_checkout_opts *co_opts, const char *branch)
{
int error = 0, old_fetchhead;
size_t nspecs;