diff options
author | Russell Belfer <rb@github.com> | 2012-04-13 13:00:10 -0700 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2012-04-17 10:47:39 -0700 |
commit | 44ef8b1b300f0cd3d8572fa1b40d257462f28240 (patch) | |
tree | 34f38bee213d1041fec7ac9dc4e63191182f3bf8 /tests-clar | |
parent | f201d613a80f7ad6f54d90eb7a7a0d8b8c72676b (diff) | |
download | libgit2-44ef8b1b300f0cd3d8572fa1b40d257462f28240.tar.gz |
Fix warnings on 64-bit windows builds
This fixes all the warnings on win64 except those in deps, which
come from the regex code.
Diffstat (limited to 'tests-clar')
-rw-r--r-- | tests-clar/diff/diff_helpers.c | 2 | ||||
-rw-r--r-- | tests-clar/repo/open.c | 2 | ||||
-rw-r--r-- | tests-clar/status/status_data.h | 8 |
3 files changed, 6 insertions, 6 deletions
diff --git a/tests-clar/diff/diff_helpers.c b/tests-clar/diff/diff_helpers.c index 055bd4bc3..c9a633cd0 100644 --- a/tests-clar/diff/diff_helpers.c +++ b/tests-clar/diff/diff_helpers.c @@ -5,7 +5,7 @@ git_tree *resolve_commit_oid_to_tree( git_repository *repo, const char *partial_oid) { - size_t len = strlen(partial_oid); + unsigned int len = (unsigned int)strlen(partial_oid); git_oid oid; git_object *obj = NULL; git_tree *tree = NULL; diff --git a/tests-clar/repo/open.c b/tests-clar/repo/open.c index 2450de017..1813887ec 100644 --- a/tests-clar/repo/open.c +++ b/tests-clar/repo/open.c @@ -1,5 +1,6 @@ #include "clar_libgit2.h" #include "fileops.h" +#include <ctype.h> void test_repo_open__cleanup(void) { @@ -234,7 +235,6 @@ void test_repo_open__win32_path(void) #ifdef GIT_WIN32 git_repository *repo = cl_git_sandbox_init("empty_standard_repo"), *repo2; git_buf winpath = GIT_BUF_INIT; - char *src, *tgt; static const char *repo_path = "empty_standard_repo/.git/"; static const char *repo_wd = "empty_standard_repo/"; diff --git a/tests-clar/status/status_data.h b/tests-clar/status/status_data.h index e60b67cb3..7f078bf60 100644 --- a/tests-clar/status/status_data.h +++ b/tests-clar/status/status_data.h @@ -1,11 +1,11 @@ struct status_entry_counts { - int wrong_status_flags_count; - int wrong_sorted_path; - int entry_count; + size_t wrong_status_flags_count; + size_t wrong_sorted_path; + size_t entry_count; const unsigned int* expected_statuses; const char** expected_paths; - int expected_entry_count; + size_t expected_entry_count; }; /* entries for a plain copy of tests/resources/status */ |