From d4cff0cb1caac8c2c2cabbab9d3301f99b5ee230 Mon Sep 17 00:00:00 2001 From: Russell Belfer Date: Tue, 13 Aug 2013 09:40:32 -0700 Subject: Rename git__win32_path fns to git_win32_path --- src/path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/path.c') 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) { -- cgit v1.2.1