summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorVicent Marti <vicent@github.com>2014-03-07 19:02:58 +0100
committerVicent Marti <vicent@github.com>2014-03-07 19:02:58 +0100
commit041cd4a23ff4fb17e7e9250521f78819636afbfd (patch)
tree15a87fe64d74d9974d17803e0e573fe56e812686 /examples
parent5a6de908f6a89e032f865f7031b0a697c3ecfc4f (diff)
parentaa17c3c63c3e31155015572cf208d89def9fce0c (diff)
downloadlibgit2-041cd4a23ff4fb17e7e9250521f78819636afbfd.tar.gz
Merge pull request #2028 from libgit2/options-names
Rename options structures
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;