Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2013-08-08 00:22:41 +0400
committerBen Straub <bs@github.com>2013-08-08 00:22:41 +0400
commit9c38f7a6523cdc87a897eccb6d83439987f99a4e (patch)
tree50f451bef9e3c3a869e2f321d585ca929a6a13f6 /src/fileops.c
parent75f98a95eee8a0efe8f9649ddc8a81c64d863ced (diff)
Add typedefs for win32 utf-8 and utf-16 buffers
...and normalize the signatures of the two conversion functions.
Diffstat (limited to 'src/fileops.c')
-rw-r--r--src/fileops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileops.c b/src/fileops.c
index 36fcc73df..5e86d1a91 100644
--- a/src/fileops.c
+++ b/src/fileops.c
@@ -58,9 +58,9 @@ int git_futils_creat_locked(const char *path, const mode_t mode)
int fd;
#ifdef GIT_WIN32
- wchar_t buf[GIT_WIN_PATH_UTF16];
+ git_win_str_utf16 buf;
- git__utf8_to_16(buf, GIT_WIN_PATH_UTF16, path);
+ git__utf8_to_16(buf, path);
fd = _wopen(buf, O_WRONLY | O_CREAT | O_TRUNC |
O_EXCL | O_BINARY | O_CLOEXEC, mode);
#else