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:
authorRussell Belfer <rb@github.com>2013-09-03 23:33:34 +0400
committerRussell Belfer <rb@github.com>2013-09-03 23:33:34 +0400
commit0d1af399e958b50540c83d5eef51cf119da76667 (patch)
treea9f997cc3f8926707348a60539b626bd2690ad72 /tests-clar/core
parent6208bd499b1d3dc1a106a35c499e92c3f8f3d238 (diff)
don't use inline in tests for win32
Diffstat (limited to 'tests-clar/core')
-rw-r--r--tests-clar/core/path.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests-clar/core/path.c b/tests-clar/core/path.c
index d35a5bda8..300600115 100644
--- a/tests-clar/core/path.c
+++ b/tests-clar/core/path.c
@@ -489,7 +489,8 @@ void test_core_path__14_apply_relative(void)
git_buf_free(&p);
}
-static inline void assert_resolve_relative(git_buf *buf, const char *expected, const char *path)
+static void assert_resolve_relative(
+ git_buf *buf, const char *expected, const char *path)
{
cl_git_pass(git_buf_sets(buf, path));
cl_git_pass(git_path_resolve_relative(buf, 0));