diff options
author | Ben Straub <bs@github.com> | 2014-01-03 17:38:34 -0800 |
---|---|---|
committer | Ben Straub <bs@github.com> | 2014-03-06 09:44:51 -0800 |
commit | 6affd71f33f9a9693425d6f3599ba1f25226c34b (patch) | |
tree | 42127170b47c96ec55438920e812dc0d96568add /src/stash.c | |
parent | 8e5247203720de7abd084996c00afd6fb6f6cc21 (diff) | |
download | libgit2-6affd71f33f9a9693425d6f3599ba1f25226c34b.tar.gz |
git_checkout_opts -> git_checkout_options
Diffstat (limited to 'src/stash.c')
-rw-r--r-- | src/stash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stash.c b/src/stash.c index 0c9101294..d20e29b80 100644 --- a/src/stash.c +++ b/src/stash.c @@ -468,7 +468,7 @@ static int reset_index_and_workdir( bool remove_untracked, bool remove_ignored) { - git_checkout_opts opts = GIT_CHECKOUT_OPTS_INIT; + git_checkout_options opts = GIT_CHECKOUT_OPTIONS_INIT; opts.checkout_strategy = GIT_CHECKOUT_FORCE; |