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>2013-06-13 02:21:21 +0400
committerRussell Belfer <rb@github.com>2013-06-13 02:21:21 +0400
commit37f66e82635c95d808c418f00d8e3c6646bd31f2 (patch)
treed12ffc9e55c0f954d6beb79d419042577de5c273 /tests-clar/refs
parent88c401bec80f795775b50f5b1f1421cf1e6385a3 (diff)
Fix Windows warnings
This fixes problems with missing function prototypes and 64-bit data issues on Windows.
Diffstat (limited to 'tests-clar/refs')
-rw-r--r--tests-clar/refs/iterator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests-clar/refs/iterator.c b/tests-clar/refs/iterator.c
index 7a966892b..266410fdf 100644
--- a/tests-clar/refs/iterator.c
+++ b/tests-clar/refs/iterator.c
@@ -66,7 +66,7 @@ void test_refs_iterator__list(void)
} while (!error);
git_reference_iterator_free(iter);
- cl_assert_equal_i(output.length, ARRAY_SIZE(refnames));
+ cl_assert_equal_sz(output.length, ARRAY_SIZE(refnames));
git_vector_sort(&output);