diff options
author | Ben Straub <bs@github.com> | 2012-11-20 19:57:46 -0700 |
---|---|---|
committer | Ben Straub <bs@github.com> | 2012-11-27 13:18:28 -0800 |
commit | f45d51ff8e04c6849413c13aedcf5abacc3c69bd (patch) | |
tree | dab9495e4954677f12475d8335cd2ea9e752f24e /tests-clar/index/conflicts.c | |
parent | d9023dbe0cb5d47e30d86149701b7be9006f7683 (diff) | |
download | libgit2-f45d51ff8e04c6849413c13aedcf5abacc3c69bd.tar.gz |
API updates for index.h
Diffstat (limited to 'tests-clar/index/conflicts.c')
-rw-r--r-- | tests-clar/index/conflicts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests-clar/index/conflicts.c b/tests-clar/index/conflicts.c index 91ff926e5..790e06717 100644 --- a/tests-clar/index/conflicts.c +++ b/tests-clar/index/conflicts.c @@ -132,7 +132,7 @@ void test_index_conflicts__get(void) void test_index_conflicts__remove(void) { - git_index_entry *entry; + const git_index_entry *entry; size_t i; cl_assert(git_index_entrycount(repo_index) == 8); @@ -156,7 +156,7 @@ void test_index_conflicts__remove(void) void test_index_conflicts__moved_to_reuc(void) { - git_index_entry *entry; + const git_index_entry *entry; size_t i; cl_assert(git_index_entrycount(repo_index) == 8); @@ -178,7 +178,7 @@ void test_index_conflicts__moved_to_reuc(void) void test_index_conflicts__remove_all_conflicts(void) { size_t i; - git_index_entry *entry; + const git_index_entry *entry; cl_assert(git_index_entrycount(repo_index) == 8); |