diff options
| author | Russell Belfer <rb@github.com> | 2012-08-23 09:20:17 -0700 |
|---|---|---|
| committer | Russell Belfer <rb@github.com> | 2012-08-23 09:20:17 -0700 |
| commit | e9ca852e4d77e1b1723a2dceddfa2037677e2fb4 (patch) | |
| tree | bb1d939d73ce2c2bd9d3001c643bcf28602a8271 /tests-clar/refs | |
| parent | 85bd17462662905dfdf9247b262480280a616ad4 (diff) | |
| download | libgit2-e9ca852e4d77e1b1723a2dceddfa2037677e2fb4.tar.gz | |
Fix warnings and merge issues on Win64
Diffstat (limited to 'tests-clar/refs')
| -rw-r--r-- | tests-clar/refs/list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests-clar/refs/list.c b/tests-clar/refs/list.c index ac3cc0058..f92bf4862 100644 --- a/tests-clar/refs/list.c +++ b/tests-clar/refs/list.c @@ -36,7 +36,7 @@ void test_refs_list__all(void) /* We have exactly 9 refs in total if we include the packed ones: * there is a reference that exists both in the packfile and as * loose, but we only list it once */ - cl_assert_equal_i(ref_list.count, 10); + cl_assert_equal_i((int)ref_list.count, 10); git_strarray_free(&ref_list); } |
