diff options
author | Russell Belfer <rb@github.com> | 2013-09-23 13:40:23 -0700 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2013-09-23 21:41:52 -0700 |
commit | 713793133f65569561c6ca518f61acdddd1d3b65 (patch) | |
tree | a3446423018ebc93ff79b82dc4c2c74c4e75b430 /tests-clar/repo | |
parent | 1ca3e49f889a3732922e6f2b303dfe0d9f74300a (diff) | |
download | libgit2-713793133f65569561c6ca518f61acdddd1d3b65.tar.gz |
Fix warnings on Windows 64-bit build
Diffstat (limited to 'tests-clar/repo')
-rw-r--r-- | tests-clar/repo/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests-clar/repo/init.c b/tests-clar/repo/init.c index caa211e75..392be205b 100644 --- a/tests-clar/repo/init.c +++ b/tests-clar/repo/init.c @@ -382,7 +382,7 @@ static void assert_hooks_match( cl_git_pass(git_buf_joinpath(&actual, repo_dir, hook_path)); cl_git_pass(git_path_lstat(actual.ptr, &st)); - cl_assert_equal_sz(expected_st.st_size, st.st_size); + cl_assert(expected_st.st_size == st.st_size); if (GIT_MODE_TYPE(expected_st.st_mode) != GIT_FILEMODE_LINK) { mode_t expected_mode = |