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
diff options
context:
space:
mode:
authorCha, Hojeong <ikadro@gmail.com>2014-05-27 18:32:38 +0400
committerCha, Hojeong <ikadro@gmail.com>2014-05-27 18:36:07 +0400
commit3ac1ff42d7cfa8ac981a37712863419c071f2640 (patch)
tree6ab7cf76aa44b7714423f1194116502f8fd43570 /tests/repo
parent433ba614a2ef948008510a1b1189702d515d2fc4 (diff)
Fix compile error on Visual Studio
Diffstat (limited to 'tests/repo')
-rw-r--r--tests/repo/pathspec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/repo/pathspec.c b/tests/repo/pathspec.c
index 334066b67..5b86662bc 100644
--- a/tests/repo/pathspec.c
+++ b/tests/repo/pathspec.c
@@ -167,7 +167,7 @@ void test_repo_pathspec__workdir4(void)
cl_git_pass(git_pathspec_match_workdir(&m, g_repo, 0, ps));
cl_assert_equal_sz(13, git_pathspec_match_list_entrycount(m));
- cl_assert_equal_s("θΏ™", git_pathspec_match_list_entry(m, 12));
+ cl_assert_equal_s("\xE8\xBF\x99", git_pathspec_match_list_entry(m, 12));
git_pathspec_match_list_free(m);
git_pathspec_free(ps);