diff options
| author | Russell Belfer <rb@github.com> | 2013-08-13 09:40:32 -0700 |
|---|---|---|
| committer | Russell Belfer <rb@github.com> | 2013-08-13 09:40:32 -0700 |
| commit | d4cff0cb1caac8c2c2cabbab9d3301f99b5ee230 (patch) | |
| tree | 8cf80e5b4df328fe2d466c21c68f016f4af56a21 /src/path.c | |
| parent | 3869a171dd78e52436bcb779a04b910454932e55 (diff) | |
| download | libgit2-d4cff0cb1caac8c2c2cabbab9d3301f99b5ee230.tar.gz | |
Rename git__win32_path fns to git_win32_path
Diffstat (limited to 'src/path.c')
| -rw-r--r-- | src/path.c | 2 |
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) { |
