summaryrefslogtreecommitdiff
path: root/src/posix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/posix.c')
-rw-r--r--src/posix.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/posix.c b/src/posix.c
index c40134824..b1f85dc94 100644
--- a/src/posix.c
+++ b/src/posix.c
@@ -7,7 +7,7 @@
#include "posix.h"
-#include "path.h"
+#include "fs_path.h"
#include <stdio.h>
#include <ctype.h>
@@ -144,8 +144,8 @@ int p_getcwd(char *buffer_out, size_t size)
if (cwd_buffer == NULL)
return -1;
- git_path_mkposix(buffer_out);
- git_path_string_to_dir(buffer_out, size); /* append trailing slash */
+ git_fs_path_mkposix(buffer_out);
+ git_fs_path_string_to_dir(buffer_out, size); /* append trailing slash */
return 0;
}