Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2014-01-04 05:38:34 +0400
committerBen Straub <bs@github.com>2014-03-06 21:44:51 +0400
commit6affd71f33f9a9693425d6f3599ba1f25226c34b (patch)
tree42127170b47c96ec55438920e812dc0d96568add /examples
parent8e5247203720de7abd084996c00afd6fb6f6cc21 (diff)
git_checkout_opts -> git_checkout_options
Diffstat (limited to 'examples')
-rw-r--r--examples/network/clone.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/network/clone.c b/examples/network/clone.c
index a982c13c2..182d1c35b 100644
--- a/examples/network/clone.c
+++ b/examples/network/clone.c
@@ -62,7 +62,7 @@ int do_clone(git_repository *repo, int argc, char **argv)
progress_data pd = {{0}};
git_repository *cloned_repo = NULL;
git_clone_options clone_opts = GIT_CLONE_OPTIONS_INIT;
- git_checkout_opts checkout_opts = GIT_CHECKOUT_OPTS_INIT;
+ git_checkout_options checkout_opts = GIT_CHECKOUT_OPTIONS_INIT;
const char *url = argv[1];
const char *path = argv[2];
int error;