diff options
Diffstat (limited to 'src/fileops.c')
-rw-r--r-- | src/fileops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileops.c b/src/fileops.c index 25323d0c9..d62158db7 100644 --- a/src/fileops.c +++ b/src/fileops.c @@ -60,7 +60,7 @@ int git_futils_creat_locked(const char *path, const mode_t mode) #ifdef GIT_WIN32 git_win32_path_utf16 buf; - git__utf8_to_16(buf, path); + git__win32_path_utf8_to_16(buf, path); fd = _wopen(buf, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL | O_BINARY | O_CLOEXEC, mode); #else |