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:
authorRussell Belfer <rb@github.com>2012-11-22 03:39:03 +0400
committerBen Straub <bs@github.com>2012-11-28 01:18:29 +0400
commita8122b5d4a179456b1a1d9af8d09313e22bfab8d (patch)
tree0c761b335489f93a6db1aecdde506a037c64dd92 /tests-clar/index/filemodes.c
parent4604a65460b42ee4b3fead03dbb92197d583cc65 (diff)
Fix warnings on Win64 build
Diffstat (limited to 'tests-clar/index/filemodes.c')
-rw-r--r--tests-clar/index/filemodes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests-clar/index/filemodes.c b/tests-clar/index/filemodes.c
index a2d5df605..6140b11ed 100644
--- a/tests-clar/index/filemodes.c
+++ b/tests-clar/index/filemodes.c
@@ -22,7 +22,7 @@ void test_index_filemodes__read(void)
static bool expected[6] = { 0, 1, 0, 1, 0, 1 };
cl_git_pass(git_repository_index(&index, g_repo));
- cl_assert_equal_i(6, git_index_entrycount(index));
+ cl_assert_equal_i(6, (int)git_index_entrycount(index));
for (i = 0; i < 6; ++i) {
const git_index_entry *entry = git_index_get_byindex(index, i);