Commit 6bd09ecc by nulltoken

Fix MSSVC compilation issue

parent 69d1bd91
...@@ -44,9 +44,10 @@ void test_clone_nonetwork__local(void) ...@@ -44,9 +44,10 @@ void test_clone_nonetwork__local(void)
void test_clone_nonetwork__local_absolute_path(void) void test_clone_nonetwork__local_absolute_path(void)
{ {
const char *local_src;
cl_set_cleanup(&cleanup_repository, "./foo"); cl_set_cleanup(&cleanup_repository, "./foo");
const char *local_src = cl_fixture("testrepo.git"); local_src = cl_fixture("testrepo.git");
cl_git_pass(git_clone(&g_repo, local_src, "./foo", &g_options)); cl_git_pass(git_clone(&g_repo, local_src, "./foo", &g_options));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment