From bbe1957b8c75760c81ce04c7edf6d203513b39f8 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Wed, 21 Oct 2015 12:09:29 +0200 Subject: tests: Fix warnings --- tests/diff/workdir.c | 2 +- tests/revwalk/basic.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/diff/workdir.c b/tests/diff/workdir.c index 89f9483a6..dac32453b 100644 --- a/tests/diff/workdir.c +++ b/tests/diff/workdir.c @@ -2080,7 +2080,7 @@ void test_diff_workdir__to_index_pathlist(void) cl_git_pass(git_repository_index(&index, g_repo)); opts.flags = GIT_DIFF_INCLUDE_IGNORED; - opts.pathspec.strings = pathlist.contents; + opts.pathspec.strings = (char **)pathlist.contents; opts.pathspec.count = pathlist.length; cl_git_pass(git_diff_index_to_workdir(&diff, g_repo, index, &opts)); diff --git a/tests/revwalk/basic.c b/tests/revwalk/basic.c index d8236ce72..5ed7da4eb 100644 --- a/tests/revwalk/basic.c +++ b/tests/revwalk/basic.c @@ -456,7 +456,8 @@ void test_revwalk_basic__big_timestamp(void) cl_git_pass(git_signature_new(&sig, "Joe", "joe@example.com", 2399662595, 0)); cl_git_pass(git_commit_tree(&tree, tip)); - cl_git_pass(git_commit_create(&id, _repo, "HEAD", sig, sig, NULL, "some message", tree, 1, &tip)); + cl_git_pass(git_commit_create(&id, _repo, "HEAD", sig, sig, NULL, "some message", tree, 1, + (const git_commit **)&tip)); cl_git_pass(git_revwalk_push_head(_walk)); -- cgit v1.2.1