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
path: root/tests
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2011-07-07 12:11:00 +0400
committerVicent Marti <tanoku@gmail.com>2011-07-07 14:12:34 +0400
commitbdcc46111c17b3a59d70ce197e44443f5ffba616 (patch)
tree6bc54b7af7902daa8e4f715721172a8c02d4f9c3 /tests
parentde18f276683a5cf3d85d001f6521e52c8c802e60 (diff)
Fix MSVC compilation warnings
Diffstat (limited to 'tests')
-rw-r--r--tests/t00-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/t00-core.c b/tests/t00-core.c
index 660f10c89..6b20e185d 100644
--- a/tests/t00-core.c
+++ b/tests/t00-core.c
@@ -75,7 +75,7 @@ END_TEST
static int test_cmp(const void *a, const void *b)
{
- return a - b;
+ return (int)a - (int)b;
}
BEGIN_TEST(vector2, "remove duplicates")