summaryrefslogtreecommitdiff
path: root/src/win32/posix.h
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/win32/posix.h
parent3869a171dd78e52436bcb779a04b910454932e55 (diff)
downloadlibgit2-d4cff0cb1caac8c2c2cabbab9d3301f99b5ee230.tar.gz
Rename git__win32_path fns to git_win32_path
Diffstat (limited to 'src/win32/posix.h')
-rw-r--r--src/win32/posix.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/win32/posix.h b/src/win32/posix.h
index 962877166..5f924a026 100644
--- a/src/win32/posix.h
+++ b/src/win32/posix.h
@@ -24,7 +24,7 @@ GIT_INLINE(int) p_mkdir(const char *path, mode_t mode)
{
git_win32_path buf;
GIT_UNUSED(mode);
- git__win32_path_from_c(buf, path);
+ git_win32_path_from_c(buf, path);
return _wmkdir(buf);
}