Commit 0d1af399e958b50540c83d5eef51cf119da76667

Russell Belfer 2013-09-03T12:33:34

don't use inline in tests for win32

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/tests-clar/core/path.c b/tests-clar/core/path.c
index d35a5bd..3006001 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));