diff options
author | Vicent Marti <vicent@github.com> | 2014-03-07 19:02:58 +0100 |
---|---|---|
committer | Vicent Marti <vicent@github.com> | 2014-03-07 19:02:58 +0100 |
commit | 041cd4a23ff4fb17e7e9250521f78819636afbfd (patch) | |
tree | 15a87fe64d74d9974d17803e0e573fe56e812686 /tests/diff/rename.c | |
parent | 5a6de908f6a89e032f865f7031b0a697c3ecfc4f (diff) | |
parent | aa17c3c63c3e31155015572cf208d89def9fce0c (diff) | |
download | libgit2-041cd4a23ff4fb17e7e9250521f78819636afbfd.tar.gz |
Merge pull request #2028 from libgit2/options-names
Rename options structures
Diffstat (limited to 'tests/diff/rename.c')
-rw-r--r-- | tests/diff/rename.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/diff/rename.c b/tests/diff/rename.c index ca08d15f3..4bc3eb54c 100644 --- a/tests/diff/rename.c +++ b/tests/diff/rename.c @@ -929,7 +929,7 @@ void test_diff_rename__rejected_match_can_match_others(void) git_reference *head, *selfsimilar; git_index *index; git_tree *tree; - git_checkout_opts opts = GIT_CHECKOUT_OPTS_INIT; + git_checkout_options opts = GIT_CHECKOUT_OPTIONS_INIT; git_diff *diff; git_diff_options diffopts = GIT_DIFF_OPTIONS_INIT; git_diff_find_options findopts = GIT_DIFF_FIND_OPTIONS_INIT; @@ -1016,7 +1016,7 @@ void test_diff_rename__rejected_match_can_match_others_two(void) git_reference *head, *selfsimilar; git_index *index; git_tree *tree; - git_checkout_opts opts = GIT_CHECKOUT_OPTS_INIT; + git_checkout_options opts = GIT_CHECKOUT_OPTIONS_INIT; git_diff *diff; git_diff_options diffopts = GIT_DIFF_OPTIONS_INIT; git_diff_find_options findopts = GIT_DIFF_FIND_OPTIONS_INIT; @@ -1072,7 +1072,7 @@ void test_diff_rename__rejected_match_can_match_others_three(void) git_reference *head, *selfsimilar; git_index *index; git_tree *tree; - git_checkout_opts opts = GIT_CHECKOUT_OPTS_INIT; + git_checkout_options opts = GIT_CHECKOUT_OPTIONS_INIT; git_diff *diff; git_diff_options diffopts = GIT_DIFF_OPTIONS_INIT; git_diff_find_options findopts = GIT_DIFF_FIND_OPTIONS_INIT; |