summaryrefslogtreecommitdiff
path: root/src/path.c
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-08-13 09:40:32 -0700
committerRussell Belfer <rb@github.com>2013-08-13 09:40:32 -0700
commitd4cff0cb1caac8c2c2cabbab9d3301f99b5ee230 (patch)
tree8cf80e5b4df328fe2d466c21c68f016f4af56a21 /src/path.c
parent3869a171dd78e52436bcb779a04b910454932e55 (diff)
downloadlibgit2-d4cff0cb1caac8c2c2cabbab9d3301f99b5ee230.tar.gz
Rename git__win32_path fns to git_win32_path
Diffstat (limited to 'src/path.c')
-rw-r--r--src/path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path.c b/src/path.c
index c9716ef6a..9a4b8c413 100644
--- a/src/path.c
+++ b/src/path.c
@@ -492,7 +492,7 @@ bool git_path_is_empty_dir(const char *path)
if (!git_path_isdir(path)) return false;
git_buf_printf(&pathbuf, "%s\\*", path);
- git__win32_path_from_c(wbuf, git_buf_cstr(&pathbuf));
+ git_win32_path_from_c(wbuf, git_buf_cstr(&pathbuf));
hFind = FindFirstFileW(wbuf, &ffd);
if (INVALID_HANDLE_VALUE == hFind) {